-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.spec.js
55 lines (54 loc) · 1.3 KB
/
webpack.config.spec.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
55
const nodeExternals = require('webpack-node-externals');
const path = require('path');
process.env.NODE_ENV = 'TEST';
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?$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
babelrc: true,
}
},
{
loader: 'eslint-loader'
}
],
},
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
use: {
loader: 'raw-loader'
}
},
{
test: /\.html$/,
exclude: /node_modules/,
use: {
loader: 'raw-loader'
}
}
]
}
};