File size: 1,628 Bytes
f0743f4 | 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 | // rollup.config.js
import { readFileSync } from 'fs';
import json from '@rollup/plugin-json';
import replace from '@rollup/plugin-replace';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
const pkg = JSON.parse(readFileSync(new URL('./package.json', import.meta.url), 'utf8'));
/**
* Check if we're in development mode
*/
const isDevelopment = process.env.NODE_ENV === 'development';
const plugins = [
peerDepsExternal(),
resolve({
preferBuiltins: true,
skipSelf: true,
}),
replace({
__IS_DEV__: isDevelopment,
preventAssignment: true,
}),
commonjs({
transformMixedEsModules: true,
requireReturnsDefault: 'auto',
}),
typescript({
tsconfig: './tsconfig.build.json',
outDir: './dist',
sourceMap: true,
/**
* Remove inline sourcemaps - they conflict with external sourcemaps
*/
inlineSourceMap: false,
/**
* Always include source content in sourcemaps for better debugging
*/
inlineSources: true,
}),
json(),
];
const cjsBuild = {
input: 'src/index.ts',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true,
exports: 'named',
entryFileNames: '[name].js',
/**
* Always include sources in sourcemap for better debugging
*/
sourcemapExcludeSources: false,
},
external: [...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.devDependencies || {})],
preserveSymlinks: true,
plugins,
};
export default cjsBuild;
|