-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup-config.prod.js
35 lines (32 loc) · 961 Bytes
/
rollup-config.prod.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
import tsPlugin from '@rollup/plugin-typescript';
import { terser } from 'rollup-plugin-terser';
import del from 'rollup-plugin-delete';
import scss from 'rollup-plugin-scss';
const productionConfig = [
{
input: "./src/index.ts",
output: {
dir: "./dist",
format: "cjs"
},
plugins: [
del({
targets: 'dist/*'
}),
tsPlugin(),
terser(),
scss({
output: './dist/styles.css',
outputStyle: "compressed",
}),
]
},
{
input: "./src/router/index.ts",
output: {
dir: "./dist/router",
format: "cjs"
}
}
];
export default productionConfig;