initial commit

This commit is contained in:
-Puter
2026-07-19 02:46:47 +05:30
commit 8033a8edb0
121 changed files with 7845 additions and 0 deletions

14
packages/ui/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"extends": "@code/config/tsconfig.base.json",
"compilerOptions": {
"jsx": "react-jsx",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": [],
"paths": {
"@code/ui/*": ["./src/*"]
},
"strictNullChecks": true
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules"]
}