ui-dev-content/tsconfig.json
autocommit 8b284e01b9 chore: initial package split from monorepo
Package: @lilith/ui-dev-content
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:45 -07:00

23 lines
622 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": false,
"types": ["vite/client", "node"],
"paths": {
"@lilith/ui-theme": ["../ui-theme/src"],
"@lilith/ui-zname": ["../zname/src"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist", "../../node_modules", "**/node_modules/**"]
}