Align tsconfig with ts_project outputs rules_ts validates that path-affecting TypeScript options are known to Bazel. The delete-project tsconfig inherited rootDir from the shared plugin config and also declared an outDir that was overridden by the ts_project rule. Override rootDir locally and remove the stale outDir so the effective tsconfig matches the package-local ts_project outputs. Change-Id: Ic9d6f0310fbcd13d548832112014491bab197c58
diff --git a/web/tsconfig.json b/web/tsconfig.json index de5b7f9..65940e1 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json
@@ -1,7 +1,7 @@ { "extends": "../../tsconfig-plugins-base.json", "compilerOptions": { - "outDir": "../../../.ts-out/plugins/delete-project" /* overridden by bazel */ + "rootDir": "." }, "include": [ "**/*.ts"