We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bbaa5 commit 5f78f60Copy full SHA for 5f78f60
packages/engine/tsconfig.json
@@ -1,17 +1,20 @@
1
{
2
"include": ["Source/**/*.js"],
3
"compilerOptions": {
4
- // module configuration
+ // Module configuration.
5
"moduleResolution": "bundler",
6
"module": "ES2022",
7
"target": "ES2022",
8
9
- // i/o
+ // I/O.
10
"noEmit": true,
11
"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.
15
"checkJs": false,
16
- // TODO(donmccurdy): Explain or remove.
17
+ // TODO(donmccurdy): Keep or remove?
18
"skipLibCheck": true
19
}
20
0 commit comments