You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
751 B
43 lines
751 B
9 years ago
|
var alias = require('./alias')
|
||
|
var webpack = require('webpack')
|
||
|
|
||
|
var webpackConfig = {
|
||
|
resolve: {
|
||
|
alias: Object.assign({}, alias, {
|
||
|
entities: './entity-decoder'
|
||
|
})
|
||
|
},
|
||
|
module: {
|
||
|
loaders: [
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
loader: 'babel',
|
||
|
exclude: /node_modules/
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.DefinePlugin({
|
||
|
'process.env': {
|
||
|
NODE_ENV: '"development"'
|
||
|
}
|
||
|
})
|
||
|
],
|
||
|
devtool: '#inline-source-map'
|
||
|
}
|
||
|
|
||
|
// shared config for all unit tests
|
||
|
module.exports = {
|
||
|
frameworks: ['jasmine'],
|
||
|
files: [
|
||
|
'../test/unit/index.js'
|
||
|
],
|
||
|
preprocessors: {
|
||
|
'../test/unit/index.js': ['webpack', 'sourcemap']
|
||
|
},
|
||
|
webpack: webpackConfig,
|
||
|
webpackMiddleware: {
|
||
|
noInfo: true
|
||
|
}
|
||
|
}
|