-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvue.config.js
51 lines (51 loc) · 1.4 KB
/
vue.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
const path = require('path')
module.exports = {
lintOnSave: false,
parallel: false,
outputDir: path.resolve(__dirname, './dist-demo'),
publicPath: "./", //(process.env.NODE_ENV === 'production') ? "cc-ui" : "",
pages: {
index: {
entry: path.resolve(__dirname, 'demo/main.ts'),
template: path.resolve(__dirname, 'demo/index.html'),
filename: 'index.html'
}
},
chainWebpack: config => {
config.resolve.extensions.add('.json').add('.vue').add('.js').add('.ts');
config.module
.rule('fonts')
.test(/\.(woff|woff2|eot|ttf|otf)$/)
.use('url-loader')
.loader('url-loader')
.options({
limit: 1024 * 50,
})
config.module
.rule('ts')
.test(/\.ts(x?)$/)
.exclude.add(/node_modules/).end()
.use('ts-loader')
.loader('ts-loader')
.options({
// happyPackMode: true,
transpileOnly: true,
onlyCompileBundledFiles: true,
appendTsSuffixTo: ['\\.vue$'],
compilerOptions: {
target: "es6",
module: "es6",
strict: false,
// jsx: "preserve",
// importHelpers: true,
moduleResolution: "node",
skipLibCheck: true,
esModuleInterop: true,
allowSyntheticDefaultImports: true,
noImplicitAny: false,
// noImplicitThis: false,
lib: ['es6', 'dom'],
}
});
}
}