botserver/tsconfig.json
2023-03-06 08:50:43 -03:00

46 lines
No EOL
976 B
JSON

{
"compilerOptions": {
"strict": false,
"allowJs": true,
"downlevelIteration": true,
"baseUrl": "./",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"skipLibCheck": true,
"mapRoot": "./dist/",
"moduleResolution": "Node",
"module": "ESNext",
"forceConsistentCasingInFileNames": true,
"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/**/*",
"packages/*.gbtheme/**/*",
],
"exclude": [
"dist",
"node_modules"
]
}