Files
openstapps/examples/minimal-plugin/tsup.config.ts

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')],
});