-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
45 lines (42 loc) · 1017 Bytes
/
rollup.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
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "rollup-plugin-typescript2";
import del from 'rollup-plugin-delete';
import multiInput from 'rollup-plugin-multi-input';
import copy from 'rollup-plugin-copy';
import json from '@rollup/plugin-json';
const packageJson = require("./package.json");
const config = {
input: [
"src/**/*.ts"
],
output:
{
//file: packageJson.main,
dir: 'build',
format: "cjs",
sourcemap: true,
chunkFileNames: '[name].js',
},
plugins: [
del({
targets: 'build/*'
}),
multiInput({ relative: 'src/' }),
peerDepsExternal(),
resolve(),
commonjs(),
json(),
typescript({
tsconfig: './tsconfig.json',
useTsconfigDeclarationDir: true
}),
copy({
targets: [
{ src: 'package.json', dest: 'build' }
]
})
]
};
export default config;