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