UNPKG

359 BJavaScriptView Raw
1// rollup.config.js
2import typescript from '@rollup/plugin-typescript';
3
4export default [
5 {
6 input: 'src/no-react.ts',
7 output: [
8 {
9 file: 'dist/esm/no-react.mjs',
10 format: 'es',
11 sourcemap: false,
12 },
13 ],
14 plugins: [
15 typescript({
16 tsconfig: 'tsconfig-esm.json',
17 sourceMap: false,
18 outputToFilesystem: true,
19 }),
20 ],
21 },
22];