initial commit

This commit is contained in:
Matthias
2026-06-15 11:33:23 +02:00
commit fc0a6fb975
155 changed files with 24526 additions and 0 deletions

17
convex/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ES2021", "dom"],
"types": ["node"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"moduleResolution": "Bundler",
"module": "ESNext",
"isolatedModules": true,
"jsx": "react-jsx"
},
"include": ["./**/*"],
"exclude": ["./_generated"]
}