-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 753 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 753 Bytes
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
{
"compilerOptions": {
"baseUrl": ".",
"module": "commonjs",
"moduleResolution": "Node",
"target": "ES2021",
"outDir": "out",
"lib": ["es6", "dom", "ES2018", "ES2019", "ES2020", "ES2021"],
"sourceMap": true,
"rootDir": "vscode-client",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
//"esModuleInterop": true,
//"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
//"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"removeComments": true,
"noImplicitReturns": true
},
"exclude": ["node_modules", ".vscode-test", "out", "htmlcov"]
}