X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=webapp-frontend%2Ftsconfig.json;h=7cfd8755401edc050450e9f905842b13bacf4e56;hb=refs%2Fchanges%2F55%2F6255%2F1;hp=5a33131e4cd08a31d18b72cf91b9777f09360bb5;hpb=ad70d4114bbfc5dbf20fd1a8151095d89610c759;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/tsconfig.json b/webapp-frontend/tsconfig.json index 5a33131..7cfd875 100644 --- a/webapp-frontend/tsconfig.json +++ b/webapp-frontend/tsconfig.json @@ -1,7 +1,7 @@ { "compileOnSave": false, "compilerOptions": { - "baseUrl": "./", + "baseUrl": "./src", "downlevelIteration": true, "outDir": "./dist/out-tsc", "sourceMap": true, @@ -13,6 +13,16 @@ "importHelpers": true, "resolveJsonModule": true, "target": "es2015", + "paths": { + "@angular/*": [ "../node_modules/@angular/*" ], + "@app/*": ["app/*"], + "@interfaces/*": ["app/interfaces/*"], + "@ei-coordinator/*": ["app/ei-coordinator/*"], + "@policy/*": ["app/policy/*"], + "@services/*": ["app/services/*"], + "@navigation/*": ["app/navigation/*"], + "@ui/*": ["app/ui/*"], + }, "typeRoots": [ "node_modules/@types" ], @@ -20,5 +30,9 @@ "es2018", "dom" ] - } + }, + "angularCompilerOptions": { + "strictTemplates": true, + "fullTemplateTypeCheck": true + } }