use ts-loader compilerOptions

This commit is contained in:
Johannes Rieken
2018-08-16 11:49:05 +02:00
parent a7b66b9252
commit ae6ac66cb5
4 changed files with 13 additions and 5 deletions

View File

@@ -31,7 +31,12 @@ module.exports = {
exclude: /node_modules/,
use: [{
loader: 'ts-loader',
options: { transpileOnly: true }
options: {
transpileOnly: true,
compilerOptions: {
"sourceMap": true,
}
}
}]
}]
},