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