#103 enabled a dev profile in the angular.json

This commit is contained in:
Fabio Formosa
2022-12-18 11:53:32 +01:00
parent 527ee1200a
commit a3b92443c4

View File

@@ -3,7 +3,7 @@
"version": 1, "version": 1,
"newProjectRoot": "projects", "newProjectRoot": "projects",
"projects": { "projects": {
"angular-spring-starter": { "quartz-manager-ui": {
"root": "", "root": "",
"prefix": "qrzmng", "prefix": "qrzmng",
"sourceRoot": "src", "sourceRoot": "src",
@@ -31,6 +31,14 @@
"scripts": [] "scripts": []
}, },
"configurations": { "configurations": {
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
"production": { "production": {
"budgets": [ "budgets": [
{ {
@@ -58,18 +66,18 @@
"serve": { "serve": {
"builder": "@angular-devkit/build-angular:dev-server", "builder": "@angular-devkit/build-angular:dev-server",
"options": { "options": {
"browserTarget": "angular-spring-starter:build" "browserTarget": "quartz-manager-ui:build:development"
}, },
"configurations": { "configurations": {
"production": { "production": {
"browserTarget": "angular-spring-starter:build:production" "browserTarget": "quartz-manager-ui:build:production"
} }
} }
}, },
"extract-i18n": { "extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n", "builder": "@angular-devkit/build-angular:extract-i18n",
"options": { "options": {
"browserTarget": "angular-spring-starter:build" "browserTarget": "quartz-manager-ui:build"
} }
}, },
"lint": { "lint": {
@@ -81,7 +89,7 @@
} }
} }
}, },
"angular-spring-starter-e2e": { "quartz-manager-ui-e2e": {
"root": "e2e", "root": "e2e",
"sourceRoot": "e2e", "sourceRoot": "e2e",
"projectType": "application", "projectType": "application",
@@ -90,7 +98,7 @@
"builder": "@angular-devkit/build-angular:protractor", "builder": "@angular-devkit/build-angular:protractor",
"options": { "options": {
"protractorConfig": "./protractor.conf.js", "protractorConfig": "./protractor.conf.js",
"devServerTarget": "angular-spring-starter:serve" "devServerTarget": "quartz-manager-ui:serve"
} }
}, },
"lint": { "lint": {