-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmars.config.js
40 lines (38 loc) · 1004 Bytes
/
mars.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
/**
* @file config file
*/
module.exports = function (target) {
const config = {
projectFiles: ['project.swan.json', 'project.config.json'],
source: ['src/**/*.vue'],
dest: target === 'h5' ? './dist-h5/src' : `./dist-${target}`,
assets: [
'src/**/*.!(vue)'
],
watch: ['src/**/*'],
preprocessors: {
ts: [
{
name: 'babel',
options: {
plugins: ['@babel/plugin-transform-typescript']
}
}
],
less: 'less'
},
postprocessors: {
less: {
name: 'postcss',
options: {
plugins: [
require('autoprefixer')({
browsers: ['last 2 versions']
})
]
}
}
}
};
return config;
};