-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
114 lines (112 loc) · 2.55 KB
/
rollup.config.js
File metadata and controls
114 lines (112 loc) · 2.55 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from '@rollup/plugin-typescript';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import dts from 'rollup-plugin-dts';
import postcss from 'rollup-plugin-postcss';
import { readFileSync } from 'fs';
const packageJson = JSON.parse(readFileSync('./package.json', 'utf8'));
export default [
{
input: 'src/index.ts',
output: [
{
file: packageJson.main,
format: 'cjs',
sourcemap: true,
sourcemapExcludeSources: false,
},
{
file: packageJson.module,
format: 'esm',
sourcemap: true,
sourcemapExcludeSources: false,
},
],
plugins: [
peerDepsExternal(),
resolve({
browser: true,
}),
commonjs(),
postcss({
modules: true,
extract: false,
inject: true,
minimize: false, // Debug build - no minification
}),
typescript({
tsconfig: './tsconfig.json',
exclude: ['**/*.test.*', '**/*.spec.*'],
}),
],
external: [
'react',
'react-dom',
'@emotion/react',
'@emotion/styled',
'@mui/material',
'@mui/icons-material',
'@mui/system',
'@mui/x-data-grid',
'@simtlix/simfinity-js-client',
],
},
{
input: 'src/client.tsx',
output: [
{
file: 'dist/client.js',
format: 'cjs',
sourcemap: true,
sourcemapExcludeSources: false,
},
{
file: 'dist/client.esm.js',
format: 'esm',
sourcemap: true,
sourcemapExcludeSources: false,
},
],
plugins: [
peerDepsExternal(),
resolve({
browser: true,
}),
commonjs(),
postcss({
modules: true,
extract: false,
inject: true,
minimize: false,
}),
typescript({
tsconfig: './tsconfig.json',
exclude: ['**/*.test.*', '**/*.spec.*'],
}),
],
external: [
'react',
'react-dom',
'@emotion/react',
'@emotion/styled',
'@mui/material',
'@mui/icons-material',
'@mui/system',
'@mui/x-data-grid',
'@simtlix/simfinity-js-client',
],
},
{
input: 'dist/index.d.ts',
output: [{ file: 'dist/index.d.ts', format: 'esm' }],
plugins: [dts()],
external: [/\.css$/],
},
{
input: 'dist/client.d.ts',
output: [{ file: 'dist/client.d.ts', format: 'esm' }],
plugins: [dts()],
external: [/\.css$/],
},
];