Files
goumrah-api/tsconfig.json
2025-11-04 18:02:28 +07:00

29 lines
456 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,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
}
},
"include": ["src"]
}