2025-01-16 09:05:49 +01:00
|
|
|
import { defineConfig } from 'rollup';
|
|
|
|
import path from 'path';
|
|
|
|
import { basePlugins } from '../../../rollup.utils.mjs';
|
|
|
|
|
|
|
|
export default defineConfig([
|
|
|
|
{
|
|
|
|
input: path.join(import.meta.dirname, 'server/src/index.ts'),
|
|
|
|
external: (id) => !path.isAbsolute(id) && !id.startsWith('.'),
|
|
|
|
output: [
|
|
|
|
{
|
|
|
|
dir: path.join(import.meta.dirname, 'dist/server'),
|
|
|
|
entryFileNames: '[name].js',
|
|
|
|
chunkFileNames: 'chunks/[name]-[hash].js',
|
|
|
|
exports: 'auto',
|
|
|
|
format: 'cjs',
|
|
|
|
sourcemap: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
dir: path.join(import.meta.dirname, 'dist/server'),
|
|
|
|
entryFileNames: '[name].mjs',
|
2025-02-10 16:12:25 +01:00
|
|
|
chunkFileNames: 'chunks/[name]-[hash].mjs',
|
2025-01-16 09:05:49 +01:00
|
|
|
exports: 'auto',
|
|
|
|
format: 'esm',
|
|
|
|
sourcemap: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
plugins: [...basePlugins(import.meta.dirname)],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
input: path.join(import.meta.dirname, 'admin/src/index.ts'),
|
|
|
|
external: (id) => !path.isAbsolute(id) && !id.startsWith('.'),
|
|
|
|
output: [
|
|
|
|
{
|
|
|
|
dir: path.join(import.meta.dirname, 'dist/admin'),
|
|
|
|
entryFileNames: '[name].js',
|
|
|
|
chunkFileNames: 'chunks/[name]-[hash].js',
|
|
|
|
exports: 'auto',
|
|
|
|
format: 'cjs',
|
|
|
|
sourcemap: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
dir: path.join(import.meta.dirname, 'dist/admin'),
|
|
|
|
entryFileNames: '[name].mjs',
|
2025-02-10 16:12:25 +01:00
|
|
|
chunkFileNames: 'chunks/[name]-[hash].mjs',
|
2025-01-16 09:05:49 +01:00
|
|
|
exports: 'auto',
|
|
|
|
format: 'esm',
|
|
|
|
sourcemap: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
plugins: [...basePlugins(import.meta.dirname)],
|
|
|
|
},
|
|
|
|
]);
|