diff options
author | Sunder Tattavarada <statta@research.att.com> | 2020-01-14 15:22:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-01-14 15:22:53 +0000 |
commit | 147d575c4899aa1abf32fbb7fd8d89ad181167a2 (patch) | |
tree | 3cab3c064193dcc2cc04f87d6de9c958cd4f15fd /portal-FE-os/angular.json | |
parent | c3a161c5fdb3a90c7e7e53e23156c82575f61cd8 (diff) | |
parent | 1515595ee5302e3380a65a7c7cace0905e2a38f1 (diff) |
Merge "Added portal-FE-os project"
Diffstat (limited to 'portal-FE-os/angular.json')
-rw-r--r-- | portal-FE-os/angular.json | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/portal-FE-os/angular.json b/portal-FE-os/angular.json new file mode 100644 index 00000000..5bcac9e4 --- /dev/null +++ b/portal-FE-os/angular.json @@ -0,0 +1,162 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "portal-FE-os": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "prefix": "app", + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + } + }, + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/public", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/tsconfig.app.json", + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "node_modules/ionicons/dist/scss/ionicons.scss", + "node_modules/material-design-icons-iconfont/dist/material-design-icons.css", +"node_modules/jqtree/jqtree.css", +"src/styles/app.scss" + ], + "scripts": [ + "node_modules/jquery/dist/jquery.min.js", + "./node_modules/hammerjs/hammer.min.js", + "node_modules/jqtree/tree.jquery.js", + "node_modules/systemjs/dist/s.js", + "node_modules/systemjs/dist/extras/named-register.js", + "node_modules/systemjs/dist/extras/amd.js", + "src/app/shared/utils/utils.js" + ] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "extractCss": true, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true, + "budgets": [ + { + "type": "initial", + "maximumWarning": "2mb", + "maximumError": "5mb" + } + ] + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "portal-FE-os:build" + }, + "configurations": { + "production": { + "browserTarget": "portal-FE-os:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "portal-FE-os:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/tsconfig.spec.json", + "karmaConfig": "src/karma.conf.js", + "styles": [ + "node_modules/ionicons/dist/scss/ionicons.scss", +"node_modules/material-design-icons-iconfont/dist/material-design-icons.css", + "node_modules/jqtree/jqtree.css", + "src/styles/app.scss" + ], + "scripts": [ + "node_modules/jquery/dist/jquery.min.js", + "node_modules/hammerjs/hammer.min.js", +"node_modules/jqtree/tree.jquery.js", + "node_modules/systemjs/dist/s.js", + "node_modules/systemjs/dist/extras/named-register.js", + "node_modules/systemjs/dist/extras/amd.js", + "src/app/shared/utils/utils.js" + ], + "assets": [ + "src/favicon.ico", + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/tsconfig.app.json", + "src/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + }, + "portal-FE-os-e2e": { + "root": "e2e/", + "projectType": "application", + "prefix": "", + "architect": { + "e2e": { + "builder": "@angular-devkit/build-angular:protractor", + "options": { + "protractorConfig": "e2e/protractor.conf.js", + "devServerTarget": "portal-FE-os:serve" + }, + "configurations": { + "production": { + "devServerTarget": "portal-FE-os:serve:production" + } + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": "e2e/tsconfig.e2e.json", + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "defaultProject": "portal-FE-os" +}
\ No newline at end of file |