-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
43 lines (43 loc) · 913 Bytes
/
tsconfig.base.json
File metadata and controls
43 lines (43 loc) · 913 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"declaration": false,
"baseUrl": "src",
"outDir": "dist",
"paths": {
"*": [
"*",
"src/*"
]
},
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"removeComments": false,
"preserveConstEnums": true,
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"es6",
"dom",
"es2015",
"es2016",
"es2017.object"
],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"jsx": "react",
"typeRoots": [
"node_modules/@types",
"src/app/typings",
"tests/webdriverTypings"
]
},
"compileOnSave": false
}