-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
72 lines (64 loc) · 1.61 KB
/
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
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
/* eslint-disable import/no-default-export, @typescript-eslint/naming-convention */
import commonjs from '@rollup/plugin-commonjs'
import css from 'rollup-plugin-import-css'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import url from '@rollup/plugin-url'
// import peerDepsExternal from 'rollup-plugin-peer-deps-external'
// TODO This is a temporary fix.
import peerDepsExternal from '@chrisneedham/rollup-plugin-peer-deps-external'
import { swc } from 'rollup-plugin-swc3'
export default [
{
external: ['rsuite/locales/fr_FR'],
input: './src/index.ts',
output: [
{
dir: './dist',
format: 'es',
preserveModules: false,
sourcemap: false
}
],
plugins: [
peerDepsExternal(),
url({
include: ['**/*.woff2'],
limit: Infinity
}),
// Convert CommonJS to ES6:
commonjs(),
css(),
nodeResolve({
extensions: ['.cjs', '.js', '.json', '.jsx', '.mjs', '.ts', '.tson', '.tsx'],
preferBuiltins: true
}),
// Transpile TS & TSX to JS:
swc({
tsconfig: './tsconfig.dist.json'
})
]
},
{
input: './src/cypress/index.ts',
output: [
{
dir: './dist/cypress',
format: 'es',
preserveModules: false,
sourcemap: false
}
],
plugins: [
peerDepsExternal(),
nodeResolve({
extensions: ['.js', 'json', '.ts', '.tson']
}),
// Convert CommonJS to ES6:
commonjs(),
// Transpile TS & TSX to JS:
swc({
tsconfig: './src/cypress/tsconfig.dist.json'
})
]
}
]