botserver/tsconfig.json
2018-10-30 19:52:40 -03:00

29 lines
717 B
JSON

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