Backend/tsconfig.json

16 lines
319 B
JSON

{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"baseUrl": "src",
"rootDir": "src",
"outDir": "dist",
"paths": {
"@utils/*": ["utils/*"],
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}