ui-dev-tools/tsconfig.json
autocommit 6acd78c1be chore: initial package split from monorepo
Package: @lilith/ui-dev-tools
Split from: lilith/ui.git or lilith/build.git
Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
2026-04-20 01:11:26 -07:00

16 lines
554 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"jsx": "react-jsx",
"types": [],
// Declaration generation disabled: TypeScript cannot generate portable
// declarations for styled-components exports due to TS2742 errors.
// Consumers use TypeScript source directly via package.json "types" field.
"declaration": false,
"declarationMap": false,
"noEmit": false
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"]
}