mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:31:06 +08:00
Fixed tsConfig exclude overwrite
This commit is contained in:
parent
cdf8328226
commit
7b1951546e
@ -46,8 +46,8 @@ async function addDependencies(npmOptions) {
|
||||
function editAngularAppTsConfig() {
|
||||
const tsConfigJson = getAngularAppTsConfigJson();
|
||||
if (tsConfigJson) {
|
||||
const { exclude } = tsConfigJson.compilerOptions;
|
||||
tsConfigJson.compilerOptions.exclude = [...exclude, '**/*.stories.ts'];
|
||||
const { exclude } = tsConfigJson;
|
||||
tsConfigJson.exclude = [...exclude, '**/*.stories.ts'];
|
||||
writeAngularAppTsConfig(tsConfigJson);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user