-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.base.js
70 lines (68 loc) · 1.98 KB
/
webpack.config.base.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
63
64
65
66
67
68
69
70
const path = require('path');
const { VueLoaderPlugin } = require('vue-loader');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin');
const {getConfig} = require('./utils');
module.exports = {
context: __dirname,
// cypress doesn't support fetch api, replace it with whatwg-fetch polyfill
entry: [...(getConfig('APP_TEST') ? ['whatwg-fetch', '../src/assets/sass/test.sass'] : []), 'reflect-metadata', '../src/main.ts'],
plugins: [
new VuetifyLoaderPlugin(),
new VueLoaderPlugin(),
new ForkTsCheckerWebpackPlugin({
typescript: {
vue: true,
tslint: false,
configFile: '../tsconfig.json'
}
}),
],
resolve: {
extensions: ['.ts', '.vue', '.json', ".js", '.png', ".sass"],
alias: {
'@': path.join(__dirname, '..', 'src')
}
},
output: {
crossOriginLoading: 'anonymous',
publicPath: getConfig('APP_PUBLIC_PATH')
},
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 2048000
},
devtool: '#source-map',
devServer: {
historyApiFallback: true
},
// optimization: {minimize: true},
module: {
rules: [
{
test: /\.ts$/,
use: [{
loader: 'babel-loader',
options: {
presets: [['babel-preset-typescript-vue', { onlyRemoveTypeImports: true}]],
plugins: [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-nullish-coalescing-operator",
["@babel/plugin-proposal-decorators", {"legacy": true}],
["@babel/plugin-proposal-class-properties", {"loose": true}],
...(getConfig('APP_TEST') ? ['istanbul'] : []),
],
babelrc: false,
},
}],
},
{
exclude: /node_modules/,
test: /\.vue$/,
loader: 'vue-loader',
},
],
},
};