-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.testing.js
More file actions
40 lines (39 loc) · 1.1 KB
/
webpack.testing.js
File metadata and controls
40 lines (39 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const nodeExternals = require('webpack-node-externals')
const path = require('path')
process.env.NODE_ENV = 'testing'
module.exports = {
target: 'node',
output: {
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
devtoolFallbackModuleFilenameTemplate: '[absolute-resource-path]?[hash]'
},
resolve: {
alias: {
'~/testhelpers': path.resolve(__dirname, 'test/helpers'),
'~testhelpers': path.resolve(__dirname, 'test/helpers'),
'~apiTests': path.resolve(__dirname, 'test/api.test'),
'~/apiTests': path.resolve(__dirname, 'test/api.test'),
'~/config': path.resolve(__dirname, 'src/config/index')
}
},
devtool: 'cheap-module-source-map',
externals: [nodeExternals()],
module: {
rules: [
{
test: /\.js?$/,
use: [
{
loader: 'babel-loader',
options: {
babelrc: false,
presets: [['env', { modules: false }], 'stage-0'],
plugins: ['transform-regenerator', 'transform-runtime']
}
}
],
exclude: /node_modules/
}
]
}
}