initial commit

This commit is contained in:
Daniil
2026-05-14 02:23:02 +03:00
commit b8b8247ff3
34 changed files with 3297 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"jsx": "react-jsx",
"strict": true,
"noEmit": true,
"lib": ["ES2022"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"types": ["bun-types"],
"paths": {
"@/*": ["./src/*"],
"@/public/*": ["./public/*"],
"@/srv/*": ["./server/*"]
}
},
"exclude": ["remotion.config.ts"]
}