Files
web/packages/ui/tsconfig.json
Dan Ditomaso 4386854e9d feat(ui): Add UI library (#900)
* feat: scaffold UI library

* Update packages/ui/src/components/theme-provider.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* add lock file

* lint/formatting fixes

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-31 14:37:34 -04:00

26 lines
576 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021", "DOM"],
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": false,
"noUncheckedIndexedAccess": true,
"erasableSyntaxOnly": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"types": ["react", "react-dom"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}