forked from webdriverio-community/wdio-electron-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
executable file
·37 lines (37 loc) · 958 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
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"baseUrl": ".",
"outDir": "./dist",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"declaration": true,
"declarationMap": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"inlineSources": true,
"skipLibCheck": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"newLine": "lf",
"noEmitOnError": true,
"lib": ["DOM", "ES2020"],
"noImplicitAny": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"noEmit": false,
"types": ["node", "jest", "webdriverio/async"]
},
"include": ["src/**/*"],
"ignore": ["node_modules", "dist"],
"typeRoots": ["./node_modules/@types", "./src/@types"],
"ts-node": {
"transpileOnly": true,
"files": true,
"require": ["tsconfig-paths/register"]
}
}