| { |
| "compilerOptions": { |
| "module": "es2020", |
| "moduleResolution": "node", |
| |
| // Allow uses of these JS APIs |
| "lib": [ |
| "dom", |
| "es5", |
| "es2015.collection", |
| "es2015.iterable", |
| "es2015.promise" |
| ], |
| |
| // Permit decorator syntax |
| "experimentalDecorators": true, |
| "declaration": true, |
| "declarationMap": true, |
| |
| // No @types by default. Will be added as-needed by extensions |
| "types": [], |
| |
| "rootDirs": [ |
| ".", |
| |
| // Add all possible bazel-out directories |
| // See https://github.com/microsoft/TypeScript/issues/37257 |
| "../bazel-out/darwin_arm64-fastbuild/bin/src", |
| "../bazel-out/darwin-dbg/bin/src", |
| "../bazel-out/darwin-fastbuild/bin/src", |
| "../bazel-out/darwin-opt-exec-2B5CBBC6/bin/src", |
| "../bazel-out/k8-dbg/bin/src", |
| "../bazel-out/k8-fastbuild/bin/src", |
| "../bazel-out/k8-opt-exec-2B5CBBC6/bin/src", |
| "../bazel-out/x64_windows-dbg/bin/src", |
| "../bazel-out/x64_windows-fastbuild/bin/src", |
| "../bazel-out/x64_windows-opt-exec-2B5CBBC6/bin/src" |
| ] |
| } |
| } |