Sass loading support

This commit is contained in:
József Farkas
2016-05-12 20:00:35 +02:00
parent ac5bf13105
commit b9018996bd
2 changed files with 8 additions and 1 deletions

View File

@@ -20,7 +20,12 @@ module.exports = {
},
module: {
loaders: [
{ test: /\.ts$/, loader: 'ts-loader', exclude: /node_modules/ }
{ test: /\.ts$/, loader: 'ts-loader', exclude: /node_modules/ },
{
test: /\.scss$/,
exclude: /node_modules/,
loaders: ['raw-loader', 'sass-loader']
}
]
},
plugins: [