Skip to content

Commit

Permalink
Update tsconfig.json to remove unnecessary linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharwebd authored Feb 5, 2024
1 parent 68e5ec7 commit 4b342ac
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions scripts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@
"esModuleInterop": true,
"isolatedModules": true,
"strictBindCallApply": true,
"lib": [
"dom",
"es2023"
],
"types": [
"node"
],
"lib": ["dom", "es2023"],
"types": ["node"],
"strict": true,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
Expand All @@ -29,14 +24,6 @@
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true
},
"exclude": [
"dist",
"**/dist",
"node_modules",
"**/node_modules"
],
"include": [
"./**/*",
"./.eslintrc.js"
]
}
"exclude": ["dist", "**/dist", "node_modules", "**/node_modules"],
"include": ["./**/*", "./.eslintrc.js"]
}

0 comments on commit 4b342ac

Please sign in to comment.