generated from pedrobarco/typescript-bazel-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 1.04 KB
/
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
35
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2019",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"sourceMap": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"baseUrl": ".",
"paths": {
"@myorg/*": ["packages/*", "packages/*/src", "packages/config/*"]
},
"rootDirs": [
".",
"bazel-out/k8-fastbuild/bin",
"bazel-out/darwin-fastbuild/bin",
"bazel-out/darwin_arm64-fastbuild/bin",
"bazel-out/x64_windows-fastbuild/bin",
"bazel-out/k8-dbg/bin",
"bazel-out/darwin-dbg/bin",
"bazel-out/darwin_arm64-dbg/bin",
"bazel-out/x64_windows-dbg/bin",
"bazel-out/k8-fastbuild-ST-4a519fd6d3e4/bin",
"bazel-out/darwin-fastbuild-ST-4a519fd6d3e4/bin",
"bazel-out/darwin_arm64-fastbuild-ST-4a519fd6d3e4/bin",
"bazel-out/x64_windows-fastbuild-ST-4a519fd6d3e4/bin"
]
},
"exclude": ["bazel-*"]
}