botserver/tsconfig.json

33 lines
976 B
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"compilerOptions": {
2025-09-21 16:49:03 -03:00
"noImplicitAny": false,
2024-09-24 14:30:01 -03:00
"rootDir": "./",
2024-09-24 16:44:03 -03:00
"strict": false,
2020-12-31 15:36:19 -03:00
"allowJs": true,
2019-05-16 10:27:26 -03:00
"downlevelIteration": true,
2018-04-21 02:59:30 -03:00
"baseUrl": "./",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"skipLibCheck": true,
2018-04-21 02:59:30 -03:00
"mapRoot": "./dist/",
"moduleResolution": "Node",
"module": "ESNext",
2024-05-25 19:11:01 -03:00
"forceConsistentCasingInFileNames": false,
"resolveJsonModule": true,
2018-04-21 02:59:30 -03:00
"outDir": "./dist",
"paths": {
2025-09-21 16:49:03 -03:00
"*": ["types/*"],
"botlib/*": ["node_modules/botlib/*"],
"pragmatismo-io-framework/*": ["node_modules/pragmatismo-io-framework/*"]
2018-04-21 02:59:30 -03:00
},
2025-09-21 16:49:03 -03:00
"types": ["node", "lodash", "node-fetch"],
2018-04-21 02:59:30 -03:00
"sourceMap": true,
"target": "ESNext",
2025-09-21 16:49:03 -03:00
"typeRoots": ["node_modules/@types"]
2018-04-21 02:59:30 -03:00
},
2025-09-21 16:49:03 -03:00
"include": ["src/**/*", "packages/*.gbapp/**/*", "packages/*.gblib/**/*", "packages/*.gbtheme/**/*"],
"exclude": ["dist", "node_modules", "**/*.test.ts"]
}