-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
50 lines (49 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": [
"ESNext",
"DOM"
],
"esModuleInterop": true,
"resolveJsonModule": true,
// Enable project compilation
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": false,
"stripInternal": true,
"strict": true,
"strictPropertyInitialization": false,
"importHelpers": true,
"downlevelIteration": false,
"noImplicitReturns": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
// Disallow inconsistently-cased references to the same file
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"experimentalDecorators": true,
"jsx": "react",
"rootDir": "src",
"outDir": "dist",
"declarationDir": "dist",
// because vscode-jsonrpc requires DedicatedWorkerGlobalScope
// we are required to include both DOM and WebWorker libs
// the only way out currently is to disable lib checking
"skipLibCheck": true,
"allowJs": true,
},
"include": [
"src/**/*",
"test/**/*"
],
"exclude": [
"dist/**/*",
"lib/**/*",
"node_modules/**/*"
]
}