@pandacss/studio
Version:
The automated token documentation for Panda CSS
16 lines (14 loc) • 393 B
text/typescript
import { defineConfig } from 'tsup'
// tsup's DTS pipeline still applies `baseUrl` internally under TS 6 (TS5101).
// Overrides here only affect declaration emit, not application tsconfig.
export default defineConfig({
entry: ['scripts/studio.ts'],
format: ['esm', 'cjs'],
splitting: false,
shims: true,
dts: {
compilerOptions: {
ignoreDeprecations: '6.0',
},
},
})