botserver/tsconfig.json
2022-01-03 13:11:21 -03:00

42 lines
No EOL
850 B
JSON

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