1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 09:49:17 +02:00
OpenSTF/webpack.config.js
2014-02-12 20:14:13 +09:00

17 lines
No EOL
382 B
JavaScript

module.exports = {
cache: true,
debug: true,
devtool: 'inline-source-map',
entry: './res/app/scripts/entry.js',
output: {
path: './res/app/build/',
filename: 'bundle.js'
},
resolve: {
modulesDirectories: ['./res/lib', 'node_modules']
},
loaders: [
{ test: /\.css$/, loader: 'style!css' },
{ test: /\.coffee$/, loader: 'coffee' }
]
}