remove transpileOnly flag from webpack

This commit is contained in:
Joao Moreno 2018-08-27 09:14:48 +02:00
parent c739104cc1
commit 3f8088b5c5

View file

@ -36,11 +36,9 @@ module.exports = function withDefaults(/**@type WebpackConfig*/extConfig) {
}
}, {
// configure TypeScript loader:
// * only transpile because we have a separate compilation pipeline
// * enable sources maps for end-to-end source maps
loader: 'ts-loader',
options: {
transpileOnly: true,
compilerOptions: {
"sourceMap": true,
}