Initial commit

This commit is contained in:
2025-08-23 13:04:42 +00:00
commit c3d80f0c61
38 changed files with 9929 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"extends": "./tsconfig.base.json",
"include": ["src", "scripts", "vite.config.mts"],
"exclude": ["node_modules", "dist", ".tsbuild*"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"types": ["bun-types", "node"],
"strict": true,
"skipLibCheck": true
}
}