Skip to content

Commit 0294c5e

Browse files
authored
Cleanup tsconfig.json (#126)
1 parent f9e6a49 commit 0294c5e

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

tsconfig.json

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
{
2-
"include": ["*.js", "**/*.js"],
2+
"exclude": ["out"],
33
"compilerOptions": {
4-
"allowSyntheticDefaultImports": true,
54
"checkJs": true,
6-
"module": "commonjs",
7-
"target": "es6",
8-
"lib": ["es6", "dom"],
5+
"module": "node16",
6+
"target": "es2021",
7+
"lib": ["es2021"],
98
"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. */
9+
"strict": true
1610
}
1711
}

0 commit comments

Comments
 (0)