ui-feedback/tsconfig.json
autocommit 08cef80977 chore: initial package split from monorepo
Package: @lilith/ui-feedback
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:38 -07:00

17 lines
445 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"composite": false,
"declaration": true,
"declarationMap": true,
"jsx": "react-jsx",
"noEmit": false,
"paths": {
"@lilith/ui-zname": ["../zname/src"],
"@lilith/ui-motion": ["../ui-motion/src"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"]
}