botserver/tsconfig.json
Rodrigo Rodriguez (Pragmatismo) 904a33a409
Some checks failed
GBCI / build (push) Failing after 2m51s
- Warming removal.
2025-09-21 16:49:03 -03:00

32 lines
976 B
JSON

{
"compilerOptions": {
"noImplicitAny": false,
"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"]
}