We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e6a49 commit 0294c5eCopy full SHA for 0294c5e
tsconfig.json
@@ -1,17 +1,11 @@
1
{
2
- "include": ["*.js", "**/*.js"],
+ "exclude": ["out"],
3
"compilerOptions": {
4
- "allowSyntheticDefaultImports": true,
5
"checkJs": true,
6
- "module": "commonjs",
7
- "target": "es6",
8
- "lib": ["es6", "dom"],
+ "module": "node16",
+ "target": "es2021",
+ "lib": ["es2021"],
9
"noEmit": true,
10
- "sourceMap": true,
11
- "strict": true /* enable all strict type-checking options */
12
- /* Additional Checks */
13
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
+ "strict": true
16
}
17
0 commit comments