Make sure the configs values are overriden properly

pull/59798/head
Matt Bierner 2018-10-01 16:49:24 -07:00
parent 936742b5d1
commit feffb38103
1 changed files with 1 additions and 2 deletions

View File

@ -37,8 +37,7 @@ const tasks = compilations.map(function (tsconfigFile) {
const relativeDirname = path.dirname(tsconfigFile);
const tsconfig = require(absolutePath);
const tsOptions = _.assign({}, tsconfig.compilerOptions, tsconfig.extends ? require(path.join(extensionsPath, relativeDirname, tsconfig.extends)).compilerOptions : {});
const tsOptions = _.assign({}, tsconfig.extends ? require(path.join(extensionsPath, relativeDirname, tsconfig.extends)).compilerOptions : {}, tsconfig.compilerOptions);
tsOptions.verbose = false;
tsOptions.sourceMap = true;