botserver/tsconfig.json

46 lines
981 B
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"compilerOptions": {
2023-03-06 08:50:43 -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": {
"*": [
"types/*"
],
"botlib/*": [
"node_modules/botlib/*"
],
"pragmatismo-io-framework/*": [
"node_modules/pragmatismo-io-framework/*"
]
2018-04-21 02:59:30 -03:00
},
"sourceMap": true,
"target": "ESNext",
"typeRoots": [
"node_modules/@types"
]
2018-04-21 02:59:30 -03:00
},
2022-01-03 13:11:21 -03:00
"include": [
2018-04-21 02:59:30 -03:00
"src/**/*",
"packages/*.gbapp/**/*",
2022-01-03 18:40:42 -03:00
"packages/*.gblib/**/*",
2024-02-17 17:27:53 -03:00
"packages/*.gbtheme/**/*"
2018-04-21 02:59:30 -03:00
],
"exclude": [
"dist",
2024-02-17 17:27:53 -03:00
"node_modules",
"**/*.test.ts"
]
}