botserver/tsconfig.json

36 lines
711 B
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"compilerOptions": {
"allowJs": false,
"baseUrl": "./",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"mapRoot": "./dist/",
"module": "commonjs",
"moduleResolution": "node",
"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/**/*",
"deploy/*.gbapp/**/*",
"deploy/*.gblib/**/*"
],
"exclude": [
"dist",
"node_modules"
]
}