forked from AugurProject/augur
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig-base.json
More file actions
35 lines (35 loc) · 767 Bytes
/
tsconfig-base.json
File metadata and controls
35 lines (35 loc) · 767 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
{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"composite": true,
"target": "es2017",
"lib": [
"es2015",
"dom",
"webworker",
"es2017"
],
"declarationMap": true,
"downlevelIteration": true,
"sourceMap": true,
"experimentalDecorators": true,
"watch": false,
"strictNullChecks": false,
"alwaysStrict": false,
"strict": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"typeRoots": [
"node_modules/@augurproject/types/types",
"node_modules/@types"
]
},
"exclude": [
"**/node_modules",
"**/build"
]
}