forked from ishubin/schemio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.export.patcher.schema.js
54 lines (53 loc) · 1.69 KB
/
webpack.export.patcher.schema.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
const { VueLoaderPlugin } = require('vue-loader');
const webpack = require('webpack');
const path = require('path');
module.exports = {
// This is the "main" file which should include all other modules
entry: './export-patcher-schema.js',
// Where should the compiled file go?
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: 'dist/schemio.export-patcher-schema.js',
filename: 'schemio.export-patcher-schema.js'
},
optimization: {
minimize: false
},
resolve: {
alias: {
vue: 'vue/dist/vue.js'
}
},
module: {
// Special compilation rules
rules: [
{
// Ask webpack to check: If this file ends with .js, then apply some transforms
test: /\.js$/,
// Transform it with babel
use: 'babel-loader',
// don't transform node_modules folder (which don't need to be compiled)
exclude: /node_modules/
},
{
// Ask webpack to check: If this file ends with .vue, then apply some transforms
test: /\.vue$/,
// don't transform node_modules folder (which don't need to be compiled)
exclude: /(node_modules|bower_components)/,
// Transform it with vue
use: 'vue-loader'
}
]
},
plugins: [
new VueLoaderPlugin(),
new webpack.IgnorePlugin({
resourceRegExp: /canvas/,
contextRegExp: /jsdom$/
}),
new webpack.DefinePlugin({
__BUILD_VERSION__: new Date().getTime(),
})
],
target: 'node'
};