mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-19 08:02:55 +00:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import {defineConfig} from 'tsup';
|
|
import {esbuildJsonSchemaPlugin} from '@openstapps/json-schema-generator';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/app.ts'],
|
|
sourcemap: true,
|
|
clean: true,
|
|
format: 'esm',
|
|
outDir: 'lib',
|
|
noExternal: [/schema:.*/],
|
|
esbuildPlugins: [esbuildJsonSchemaPlugin],
|
|
});
|