elearning/Backend/tsconfig.json

39 lines
863 B
JSON
Raw Permalink Normal View History

2026-01-09 06:28:15 +00:00
{
"compilerOptions": {
2026-01-13 03:10:44 +00:00
"target": "ES2021",
2026-01-09 06:28:15 +00:00
"module": "commonjs",
"lib": [
2026-01-13 03:10:44 +00:00
"ES2021"
2026-01-09 06:28:15 +00:00
],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": [
"node"
],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}