-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
39 lines (39 loc) · 994 Bytes
/
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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"resolveJsonModule": true,
"outDir": "out",
"lib": [
"es2020.string",
"es6"
],
"experimentalDecorators": true,
"sourceMap": true,
"skipLibCheck": true,
"rootDir": "src",
"strict": false, /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* FixReport error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* FixReport errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* FixReport errors on unused parameters. */
"baseUrl": ".",
"paths": {
"vscode": ["node_modules/@types/vscode/"]
},
"types": [
"node",
"@wdio/globals/types",
"@wdio/mocha-framework",
"wdio-vscode-service"
],
"esModuleInterop": true
},
"exclude": [
"node_modules",
".vscode-test",
"webviews",
"test",
"wdio.conf.ts"
]
}