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
16 lines
554 B
JSON
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"]
|
|
}
|