X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=d4af3f3ff624310388649f22934a60e7cf867d18;hb=55d7d6002049be09a06b08da26febe2e8bfa494b;hp=3d069f7f7b0f6956ec192bb40748db09bee76a1c;hpb=f8496b2247cb7e47192173307d690c33c4deaf2c;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 3d069f7f..d4af3f3f 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -66,44 +66,32 @@ export default defineConfig([ }) } ], - external: [ - 'node:async_hooks', - 'node:cluster', - 'node:crypto', - 'node:events', - 'node:fs', - 'node:os', - 'node:perf_hooks', - 'node:worker_threads' - ], + external: [/^node:*/], plugins: [ typescript({ - tsconfig: './tsconfig.build.json' + tsconfig: './tsconfig.build.json', + compilerOptions: { + sourceMap: sourcemap + } }), del({ targets: ['./lib/*'] }), - isAnalyzeBuild && analyze(), - isDocumentationBuild && command('pnpm typedoc') + Boolean(isAnalyzeBuild) && analyze(), + Boolean(isDocumentationBuild) && command('pnpm typedoc') ] }, { input: './lib/dts/index.d.ts', output: [{ format: 'esm', file: './lib/index.d.ts' }], - external: [ - 'node:async_hooks', - 'node:cluster', - 'node:events', - 'node:perf_hooks', - 'node:worker_threads' - ], + external: [/^node:*/], plugins: [ dts(), del({ targets: ['./lib/dts'], hook: 'buildEnd' }), - isAnalyzeBuild && analyze() + Boolean(isAnalyzeBuild) && analyze() ] } ])