This commit is contained in:
Bernhard Posselt 2018-03-03 13:53:05 +01:00
Родитель 491a16f39c
Коммит e8964ffc0b
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -22,8 +22,11 @@ module.exports = function (config) {
extensions: ['.js', '.ts', '.tsx']
},
module: {
loaders: [
{test: /\.tsx?$/, loader: 'ts-loader'}
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader'
}
]
},
stats: {
@ -33,6 +36,7 @@ module.exports = function (config) {
errorDetails: true
},
devtool: 'inline-source-map',
mode: 'production'
},
reporters: ['progress'],
port: 9876,