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"