-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
34 lines (34 loc) · 968 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
{
"compilerOptions": {
"target": "es2015",
"module": "umd",
"moduleResolution": "node",
"downlevelIteration": true,
"skipDefaultLibCheck": true,
"preserveConstEnums": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noErrorTruncation": false,
"noEmitOnError": false,
"declaration": true,
"stripInternal": true,
"inlineSourceMap": true,
"inlineSources": true,
"sourceMap": false,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDirs": [
".",
"bazel-out/host/bin",
"bazel-out/darwin-fastbuild/bin",
"bazel-out/k8-fastbuild/bin",
"bazel-out/x64_windows-fastbuild/bin",
"bazel-out/darwin-dbg/bin",
"bazel-out/k8-dbg/bin",
"bazel-out/x64_windows-dbg/bin",
]
},
"exclude": ["external"]
}