botserver/tsconfig.json

30 lines
717 B
JSON
Raw Normal View History

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