You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
542 B

import { defineConfig } from 'rollup';
import path from 'path';
import { baseConfig } from '../../../rollup.utils.mjs';
export default defineConfig([
baseConfig({
input: {
index: './server/src/index.ts',
},
outDir: './dist/server',
}),
baseConfig({
input: {
_internal: './_internal/index.ts',
},
outDir: './dist',
}),
baseConfig({
input: {
index: './admin/src/index.ts',
ee: './admin/src/ee.ts',
test: './admin/tests/index.ts',
},
outDir: './dist/admin',
}),
]);