Migration to V4 is in progress. The Bot now can be loaded again.

This commit is contained in:
Rodrigo Rodriguez 2018-08-28 17:50:34 -03:00
parent a4c7418b5a
commit 9c21130310

View file

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