botlib/tsconfig.json
2019-03-08 06:36:12 -03:00

32 lines
No EOL
621 B
JSON

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