-
Notifications
You must be signed in to change notification settings - Fork 260
/
webpack.testing.js
54 lines (53 loc) · 1.37 KB
/
webpack.testing.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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'),
'~apiSpecs': path.resolve(__dirname, 'test/apiSpecs'),
'~/apiSpecs': path.resolve(__dirname, 'test/apiSpecs'),
'~/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/
},
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
use: {
loader: 'raw-loader'
}
},
{
test: /\.html$/,
exclude: /node_modules/,
use: {
loader: 'raw-loader'
}
}
]
}
}