botlib/tsconfig.json

28 lines
531 B
JSON
Raw Normal View History

2018-04-20 23:20:17 -03:00
{
"compilerOptions": {
"allowJs": false,
"baseUrl": "",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-08-19 12:58:01 -03:00
"keyofStringsOnly": true,
2018-08-19 15:34:01 -03:00
"skipLibCheck": true,
2018-04-20 23:20:17 -03:00
"mapRoot": "./dist/",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"sourceMap": true,
"target": "es6",
"typeRoots": [
"node_modules/@types"
]
},
2018-08-19 12:58:01 -03:00
"include": [
"test/**/*",
"src/**/*"
],
2018-04-20 23:20:17 -03:00
"exclude": [
"dist",
"node_modules"
]
}