botlib/tsconfig.json

32 lines
621 B
JSON
Raw Normal View History

2018-04-20 23:20:17 -03:00
{
"compilerOptions": {
"allowJs": false,
"baseUrl": "./",
"declaration": true,
2018-04-20 23:20:17 -03:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
2018-04-20 23:20:17 -03:00
"mapRoot": "./dist/",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"paths": {
"pragmatismo-io-framework/*": [
"node_modules/pragmatismo-io-framework/*"
]
},
2018-04-20 23:20:17 -03:00
"sourceMap": true,
"target": "es6",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"test/**/*",
"src/**/*"
],
2018-04-20 23:20:17 -03:00
"exclude": [
"dist",
"node_modules"
]
}