mirror of
https://github.com/openstf/stf
synced 2025-10-03 09:49:17 +02:00
17 lines
365 B
JavaScript
17 lines
365 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' }
|
|
]
|
|
}
|