-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
rollup.config.ts
75 lines (68 loc) · 1.63 KB
/
rollup.config.ts
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
71
72
73
74
75
// rollup.config.ts
import typescript from '@rollup/plugin-typescript'
import nodeResolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import terser from '@rollup/plugin-terser'
const libraryName = 'tapscript'
const treeshake = {
moduleSideEffects: false,
propertyReadSideEffects: false,
tryCatchDeoptimization: false
}
const onwarn = warning => {
// eslint-disable-next-line no-console
console.error(
'Building Rollup produced warnings that need to be resolved. ' +
'Please keep in mind that the browser build may never have external dependencies!'
);
// eslint-disable-next-line unicorn/error-message
throw Object.assign(new Error(), warning);
}
const tsConfig = {
compilerOptions: {
declaration: false,
declarationDir: null,
declarationMap: false
}
}
const nodeConfig = {
input: 'src/index.ts',
onwarn,
output: [
{
file : 'dist/main.cjs',
format : 'cjs',
sourcemap : true,
},
{
file : 'dist/module.mjs',
format : 'es',
sourcemap : true,
minifyInternalExports: false
},
],
plugins: [ typescript(tsConfig), nodeResolve(), commonjs() ],
strictDeprecations: true,
treeshake
}
const browserConfig = {
input: 'src/index.ts',
onwarn,
output: [
{
file : 'dist/bundle.min.js',
format : 'iife',
name : libraryName,
plugins : [terser()],
sourcemap : true
},
],
plugins: [
typescript(tsConfig),
nodeResolve({ browser: true }),
commonjs()
],
strictDeprecations: true,
treeshake
}
export default [ nodeConfig, browserConfig ]