diff --git a/tsconfig.json b/tsconfig.json index 6c6a98b..ec9ad54 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,41 +1,47 @@ { - "compileOnSave": false, - "compilerOptions": { - "baseUrl": "./", - "outDir": "./dist/out-tsc", - "sourceMap": true, - "declaration": false, - "module": "es2015", - "moduleResolution": "node", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "target": "es5", - "typeRoots": [ - "node_modules/@types" - ], - "lib": [ - "es2018", - "dom" - ], - "paths": { - "globalnav": [ - "dist/globalnav" - ], - "globalnav/*": [ - "dist/globalnav/*" - ], - "page-not-found": [ - "dist/page-not-found" - ], - "page-not-found/*": [ - "dist/page-not-found/*" - ], - "shared": [ - "dist/shared" - ], - "shared/*": [ - "dist/shared/*" - ] + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "module": "es2015", + "moduleResolution": "node", + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "target": "es5", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ], + "paths": { + "globalnav": [ + "dist/globalnav" + ], + "globalnav/*": [ + "dist/globalnav/*" + ], + "page-not-found": [ + "dist/page-not-found" + ], + "page-not-found/*": [ + "dist/page-not-found/*" + ], + "shared": [ + "dist/shared" + ], + "shared/*": [ + "dist/shared/*" + ], + "@account/http/*": [ + "projects/account/src/app/core/http/*" + ], + "@account/models/*": [ + "projects/account/src/app/shared/models/*" + ] + } } - } -} \ No newline at end of file +}