Source map working

pull/21833/head
Richard van der Hoff 2016-03-28 18:19:37 +01:00
parent c516ecebcc
commit e428f48269
1 changed files with 1 additions and 1 deletions

View File

@ -91,10 +91,10 @@ module.exports = function (config) {
resolve: { resolve: {
alias: { alias: {
'matrix-react-sdk': path.resolve('src/index.js'), 'matrix-react-sdk': path.resolve('src/index.js'),
// todo: make this go via an include path?
'test-component-index': path.resolve('test/test-component-index.js'), 'test-component-index': path.resolve('test/test-component-index.js'),
}, },
}, },
devtool: 'inline-source-map',
}, },
}); });
}; };