forked from webdriverio-community/wdio-vscode-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·44 lines (44 loc) · 1.04 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
{
"compilerOptions": {
"target": "ES2021",
"module": "node16",
"baseUrl": "src",
"outDir": "./dist",
"moduleResolution": "Node16",
"esModuleInterop": true,
"strict": true,
"declaration": true,
"declarationMap": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"inlineSources": true,
"inlineSourceMap": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"newLine": "lf",
"noEmitOnError": true,
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"noImplicitAny": true,
"resolveJsonModule": true,
"allowJs": true,
"experimentalDecorators": true,
"checkJs": true,
"types": [
"node",
"vscode",
"@wdio/globals/types",
"@wdio/mocha-framework",
"expect-webdriverio"
]
},
"include": [
"src/**/*",
"src/chromium/package.json",
"src/proxy/cjs/package.json"
],
"exclude": [
"src/server/fs-provider/fsExtensionMain.js"
],
"ignore": ["node_modules", "dist"]
}