Skip to content

Commit 1ec5b76

Browse files
committed
WIP: tsconfig TODOs
1 parent 9cea730 commit 1ec5b76

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

tsconfig.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@
22
"compilerOptions": {
33
"rootDir": ".",
44
"module": "commonjs",
5-
"target": "es6",
5+
"target": "es6", // TODO: Move to ES2020
66
"outDir": "out",
77
"lib": [
8-
"es2017",
9-
"DOM"
8+
"es2017", // TODO: Move to ES2020
9+
"DOM" // TODO: Move to WebWorker
1010
],
1111
"sourceMap": true
12+
// TODO: Add "strict": true
13+
// TODO: Add "noImplicitReturns": true
14+
// TODO: Add "noFallthroughCasesInSwitch": true
15+
// TODO: Add "noUnusedParameters": true
1216
},
1317
"exclude": [
1418
"node_modules"
19+
// TODO: Do we need to add more here?
1520
]
1621
}

0 commit comments

Comments
 (0)