Skip to content

Commit dc81b45

Browse files
authored
gulp-typescript does handles config extension correctly now (microsoft#16992)
1 parent 2a4b9c7 commit dc81b45

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Gulpfile.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -256,14 +256,8 @@ function needsUpdate(source: string | string[], dest: string | string[]): boolea
256256
return true;
257257
}
258258

259-
// Doing tsconfig inheritance manually. https://github.com/ivogabe/gulp-typescript/issues/459
260-
const tsconfigBase = JSON.parse(fs.readFileSync("src/tsconfig-base.json", "utf-8")).compilerOptions;
261-
262259
function getCompilerSettings(base: tsc.Settings, useBuiltCompiler?: boolean): tsc.Settings {
263260
const copy: tsc.Settings = {};
264-
for (const key in tsconfigBase) {
265-
copy[key] = tsconfigBase[key];
266-
}
267261
for (const key in base) {
268262
copy[key] = base[key];
269263
}

0 commit comments

Comments
 (0)