init project structure

This commit is contained in:
ItsMalma
2025-11-01 16:56:42 +07:00
commit 2769bdd894
8 changed files with 413 additions and 0 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"noEmit": true,
"target": "esnext",
"module": "esnext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"esModuleInterop": true,
"lib": ["esnext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"verbatimModuleSyntax": true
},
"include": ["src"]
}