2018-04-21 02:59:30 -03:00
|
|
|
{
|
2023-01-31 23:11:06 -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,
|
2022-11-18 22:39:14 -03:00
|
|
|
"esModuleInterop": true,
|
2018-08-28 17:50:19 -03:00
|
|
|
"skipLibCheck": true,
|
2018-04-21 02:59:30 -03:00
|
|
|
"mapRoot": "./dist/",
|
2022-10-28 23:17:35 -03:00
|
|
|
"moduleResolution": "Node",
|
2022-11-18 22:39:14 -03:00
|
|
|
"module": "ESNext",
|
2024-05-25 19:11:01 -03:00
|
|
|
"forceConsistentCasingInFileNames": false,
|
2022-11-18 22:39:14 -03:00
|
|
|
"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,
|
2019-05-16 10:38:59 -03:00
|
|
|
"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"]
|
|
|
|
|
}
|