From 9c21130310927c17e99d6fa3e93c5109356b3884 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 28 Aug 2018 17:50:34 -0300 Subject: [PATCH] Migration to V4 is in progress. The Bot now can be loaded again. --- tsconfig.json | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 859909e..e1225dc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,32 @@ { "compilerOptions": { "allowJs": false, - "baseUrl": "", - "declaration": true, + "baseUrl": "./", + "declaration": false, "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/**/*"], + "include": [ + "test/**/*", + "src/**/*", + "deploy/*.gbapp/**/*", + "deploy/*.gblib/**/*" + ], "exclude": [ "dist", "node_modules"