botlib/tsconfig.json
2018-08-19 12:58:01 -03:00

27 lines
No EOL
505 B
JSON

{
"compilerOptions": {
"allowJs": false,
"baseUrl": "",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"keyofStringsOnly": true,
"mapRoot": "./dist/",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"sourceMap": true,
"target": "es6",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"test/**/*",
"src/**/*"
],
"exclude": [
"dist",
"node_modules"
]
}