Files
TI-FCYT-URBAN/bot-wsp/tsconfig.json
T
Valentin Romero 25d4ba6cc0 add bot wsp
2026-06-30 22:04:56 -03:00

32 lines
706 B
JSON

{
"compilerOptions": {
"target": "ES2021", // a qué versión de JS transpilar
"module": "CommonJS", // usar require()/exports para Node
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"incremental": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
]
}
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*.test.ts"
]
}