We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0c692a commit 4f53eb1Copy full SHA for 4f53eb1
README.md
@@ -35,12 +35,11 @@ loaders: [
35
{
36
test: /\.(js|svg)$/i,
37
loader: 'babel-loader', // v6 or later
38
+ exclude: /node_modules/,
39
query: {
- presets: ['react', 'es2015']
40
- },
41
- plugins: [
42
- 'transform-runtime'
43
- ]
+ presets: ['react', 'es2015'],
+ plugins: ['transform-runtime']
+ }
44
},
45
46
test: /\.svg$/i,
test/webpack.config.js
@@ -16,11 +16,9 @@ module.exports = {
16
loader: 'babel-loader',
17
include: __dirname,
18
19
20
21
22
23
24
25
26
0 commit comments