mirror of
https://github.com/diced/zipline.git
synced 2025-05-10 18:05:54 +02:00
17 lines
376 B
TypeScript
Executable file
17 lines
376 B
TypeScript
Executable file
import glob from 'fast-glob';
|
|
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig(async (_) => {
|
|
return [
|
|
{
|
|
platform: 'node',
|
|
format: 'cjs',
|
|
clean: true,
|
|
sourcemap: true,
|
|
entry: await glob('./src/**/*.ts', {
|
|
ignore: ['./src/components/**/*.ts', './src/pages/**/*.ts'],
|
|
}),
|
|
outDir: 'build',
|
|
},
|
|
];
|
|
});
|