Files
goumrah-api/tsconfig.json
2025-11-03 21:28:16 +07:00

26 lines
388 B
JSON

{
"compilerOptions": {
"noEmit": true,
"target": "esnext",
"module": "esnext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"esModuleInterop": true,
"lib": ["esnext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"verbatimModuleSyntax": true,
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
}
},
"include": ["src"]
}