Skip to content

Commit 5f78f60

Browse files
committed
tidy up tsconfig
1 parent 84bbaa5 commit 5f78f60

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/engine/tsconfig.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
{
22
"include": ["Source/**/*.js"],
33
"compilerOptions": {
4-
// module configuration
4+
// Module configuration.
55
"moduleResolution": "bundler",
66
"module": "ES2022",
77
"target": "ES2022",
88

9-
// i/o
9+
// I/O.
1010
"noEmit": true,
1111
"allowJs": true,
12+
13+
// Disabled by default. Individual JS files may opt-in to type checking
14+
// by including a `// @ts-check` comment at top of file.
1215
"checkJs": false,
1316

14-
// TODO(donmccurdy): Explain or remove.
17+
// TODO(donmccurdy): Keep or remove?
1518
"skipLibCheck": true
1619
}
1720
}

0 commit comments

Comments
 (0)