This commit is contained in:
2026-04-03 13:46:30 +04:00
commit 9b3e9481d0
129 changed files with 25099 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/**/*"]
}