forked from buildbuddy-io/buildbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 852 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
{
"compilerOptions": {
"jsx": "react",
"esModuleInterop": true,
"noImplicitAny": true,
"importHelpers": true,
"moduleResolution": "node",
"module": "commonjs",
"sourceMap": false,
"isolatedModules": true,
"downlevelIteration": true,
"skipLibCheck": true,
"composite": true,
"target": "ES2016",
"lib": ["es2017", "es2019", "dom", "dom.iterable"],
"rootDirs": [
".",
"bazel-bin",
"bazel-out/k8-opt/bin",
"bazel-out/k8-fastbuild/bin",
"bazel-out/darwin-opt/bin",
"bazel-out/darwin-fastbuild/bin",
"bazel-out/darwin_arm64-opt/bin",
"bazel-out/darwin_arm64-fastbuild/bin"
]
// Note: we intentionally don't set "baseUrl": "." in order to force import
// module specifiers to be relative.
},
"exclude": ["bazel-buildbuddy", "website"]
}