chore: initial commit

This commit is contained in:
Sajad Mirjalili
2025-07-01 15:12:33 +03:30
commit e2d37ac7b2
17 changed files with 3975 additions and 0 deletions

18
tsconfig.node.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"composite": true,
/* Base Options */
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler & Module Resolution */
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
/* Strictness & Linting */
"strict": true
},
"include": ["vite.config.ts", "eslint.config.ts"]
}