-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.test.config.js
62 lines (58 loc) · 1.49 KB
/
webpack.test.config.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
56
57
58
59
60
61
62
var path = require('path');
module.exports = {
module: {
output: 'testBundle.js',
loaders: [
{
test: /\.jsx$/,
loaders: ['react-hot', 'jsx']
},
{
test: /\.scss$/,
loader: "style!css!sass?outputStyle=expanded"
},
{
test: /\.sass$/,
loader: "style!css!sass?outputStyle=expanded"
},
{
test: /\.css$/,
loader: "style-loader!css-loader!autoprefixer-loader"
},
{
test: /\.less$/,
loader: "style-loader!css-loader!less-loader"
},
{
test: /\.woff$/,
loader: "url-loader?limit=10000&minetype=application/font-woff"
},
{
test: /\.ttf$/,
loader: "file-loader"
},
{
test: /\.eot$/,
loader: "file-loader"
},
{
test: /\.svg$/,
loader: "file-loader"
},
{
test: /\.spec.js$/,
loader: "mocha-loader"
}
]
},
resolve: {
root: [
path.resolve('scripts')
],
modulesDirectories: [
'node_modules'
],
extensions: ['', '.js', '.json', '.jsx']
},
devtool: "inline-source-map"
};