Package: @lilith/ui-fab Split from: lilith/ui.git or lilith/build.git Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
14 lines
536 B
JSON
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"]
|
|
}
|