-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 889 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
{
"compileOnSave": true,
"compilerOptions": {
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strict": true,
"strictNullChecks": false,
"noImplicitAny" : false,
"preserveSymlinks": true,
"allowJs": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"inlineSources": true,
"typeRoots": ["./node_modules/@types","./lib/types" ],
"rootDir": "./lib",
"target": "ES2020",
"removeComments": true,
"module": "commonjs",
"moduleResolution": "node",
"baseUrl": ".",
"types": [ "jest","node", "webdriverio/sync","@types/fs-extra", "long"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "./dist"
},
"include": [
"**/*.ts"
]
}