mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-22 17:42:57 +00:00
feat: improve monorepo dev experience
This commit is contained in:
12
packages/es-mapping-generator/tsup.config.ts
Normal file
12
packages/es-mapping-generator/tsup.config.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import {defineConfig} from 'tsup';
|
||||
import {jsonSchemaPlugin} from '@openstapps/json-schema-generator';
|
||||
|
||||
export default defineConfig({
|
||||
entry: ['src/index.ts'],
|
||||
sourcemap: true,
|
||||
clean: true,
|
||||
format: 'esm',
|
||||
outDir: 'lib',
|
||||
external: ['./index.schema.json'],
|
||||
plugins: [jsonSchemaPlugin('index.schema.json')],
|
||||
});
|
||||
Reference in New Issue
Block a user