blob: 8cd5dfb2c6da52f876c9abc00d7a0a4ac8592141 [file]
{
"extends": "./tsconfig.json",
"compilerOptions": {
// Override the yarn/IDE outDir from tsconfig.json: rules_ts requires the
// output directory to stay within the Bazel package (kept in sync with
// out_dir of the compile_pg ts_project in the BUILD file).
"outDir": "_pg_ts_out",
"typeRoots": [
"../../external/ui_npm/node_modules/@types",
"../../external/ui_dev_npm/node_modules/@types"
]
},
"include": [
// Items below must be in sync with the src_dirs list in the BUILD file
// Also items must be in sync with tsconfig.json, tsconfig_bazel_test.json
// (include and exclude arrays are overridden when extends)
"api/**/*",
"constants/**/*",
"elements/**/*",
"embed/**/*",
"gr-diff/**/*",
"mixins/**/*",
"models/**/*",
"scripts/**/*",
"services/**/*",
"styles/**/*",
"types/**/*",
"utils/**/*",
"workers/**/*"
],
"exclude": [
"**/*_test.ts",
"**/*_test.js"
]
}