Skip to content

Commit be691cb

Browse files
devversionjelbourn
authored andcommitted
build: suppress bazel schematic tsconfig warnings (#12957)
* Since the schematics are also built through Gulp, we need to specify the `exclude` option in the `tsconfig`. Bazel warns because those options will be ignored. Similarly to all other tsconfig files, we should suppress the warnings.
1 parent b884295 commit be691cb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib/schematics/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@
2222
"*/files/**/*",
2323
// Exclude all test-case files because those should not be included in the schematics output.
2424
"update/test-cases/**/*"
25-
]
25+
],
26+
"bazelOptions": {
27+
"suppressTsconfigOverrideWarnings": true
28+
}
2629
}

0 commit comments

Comments
 (0)