This commit is contained in:
2026-04-03 14:20:54 +04:00
commit 75c9ba2b29
199 changed files with 37947 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"moduleResolution": "node"
},
"include": ["src/**/*"]
}