ui-fab/tsconfig.json
autocommit 92903f78a2 chore: initial package split from monorepo
Package: @lilith/ui-fab
Split from: lilith/ui.git or lilith/build.git
Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
2026-04-20 01:10:29 -07:00

14 lines
536 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
// 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,
"jsx": "react-jsx"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/__tests__/**", "**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"]
}