-
Notifications
You must be signed in to change notification settings - Fork 61
/
tsconfig.json
38 lines (38 loc) · 1.01 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"compilerOptions": {
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022",
"noEmit": true,
"removeComments": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"sourceMap": true,
"inlineSources": true,
"isolatedModules": false,
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": true, // For D3.js
"strictNullChecks": true,
"alwaysStrict": true,
"skipLibCheck": true,
},
"references": [
{ // Webview scripts need a different module type (esm), so they are handled as a separate (sub) project.
"path": "src/webview-scripts"
}
],
"compileOnSave": true,
"include": [
"src/*.ts",
"src/backend/**/*.ts",
"src/frontend/**/*.ts",
"src/parser/*.ts",
"tests/**/*.ts"
],
"exclude": [
"node_modules/**",
".vscode-test",
"images",
"**/generated/*"
]
}