botserver/tsconfig.json
Rodrigo Rodriguez (Pragmatismo) 58ebbe880c
Some checks failed
GBCI / build (push) Has been cancelled
- TS updates.
2025-07-22 18:04:15 -03:00

52 lines
No EOL
1 KiB
JSON

{
"compilerOptions": {
"rootDir": "./",
"strict": false,
"allowJs": true,
"downlevelIteration": true,
"baseUrl": "./",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"skipLibCheck": true,
"mapRoot": "./dist/",
"moduleResolution": "Node",
"module": "ESNext",
"forceConsistentCasingInFileNames": false,
"resolveJsonModule": true,
"outDir": "./dist",
"paths": {
"*": [
"types/*"
],
"botlib/*": [
"node_modules/botlib/*"
],
"pragmatismo-io-framework/*": [
"node_modules/pragmatismo-io-framework/*"
]
},
"types": [
"node",
"lodash",
"node-fetch"
],
"sourceMap": true,
"target": "ESNext",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*",
"packages/*.gbapp/**/*",
"packages/*.gblib/**/*",
"packages/*.gbtheme/**/*"
],
"exclude": [
"dist",
"node_modules",
"**/*.test.ts"
]
}