blob: ff86b826df8c1baa0b8cdf7b79e55926286f08e3 [file] [log] [blame]
{
"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-dbg/bin/src",
"../bazel-out/darwin-fastbuild/bin/src",
"../bazel-out/darwin_arm64-fastbuild/bin/src",
"../bazel-out/k8-dbg/bin/src",
"../bazel-out/k8-fastbuild/bin/src",
"../bazel-out/x64_windows-dbg/bin/src",
"../bazel-out/x64_windows-fastbuild/bin/src"
]
}
}