aboutsummaryrefslogtreecommitdiff
path: root/angular.json
diff options
context:
space:
mode:
Diffstat (limited to 'angular.json')
-rw-r--r--angular.json26
1 files changed, 15 insertions, 11 deletions
diff --git a/angular.json b/angular.json
index 15117b1..b396b5d 100644
--- a/angular.json
+++ b/angular.json
@@ -3,17 +3,21 @@
3 "version": 1, 3 "version": 1,
4 "newProjectRoot": "projects", 4 "newProjectRoot": "projects",
5 "projects": { 5 "projects": {
6 "hello-world-app": { 6 "gnunet-webui": {
7 "root": "", 7 "root": "",
8 "sourceRoot": "src", 8 "sourceRoot": "src",
9 "projectType": "application", 9 "projectType": "application",
10 "prefix": "app", 10 "prefix": "app",
11 "schematics": {}, 11 "schematics": {
12 "@schematics/angular:component": {
13 "styleext": "scss"
14 }
15 },
12 "architect": { 16 "architect": {
13 "build": { 17 "build": {
14 "builder": "@angular-devkit/build-angular:browser", 18 "builder": "@angular-devkit/build-angular:browser",
15 "options": { 19 "options": {
16 "outputPath": "dist/hello-world-app", 20 "outputPath": "dist/gnunet-webui",
17 "index": "src/index.html", 21 "index": "src/index.html",
18 "main": "src/main.ts", 22 "main": "src/main.ts",
19 "polyfills": "src/polyfills.ts", 23 "polyfills": "src/polyfills.ts",
@@ -23,7 +27,7 @@
23 "src/assets" 27 "src/assets"
24 ], 28 ],
25 "styles": [ 29 "styles": [
26 "src/styles.css" 30 "src/styles.scss"
27 ], 31 ],
28 "scripts": [] 32 "scripts": []
29 }, 33 },
@@ -50,18 +54,18 @@
50 "serve": { 54 "serve": {
51 "builder": "@angular-devkit/build-angular:dev-server", 55 "builder": "@angular-devkit/build-angular:dev-server",
52 "options": { 56 "options": {
53 "browserTarget": "hello-world-app:build" 57 "browserTarget": "gnunet-webui:build"
54 }, 58 },
55 "configurations": { 59 "configurations": {
56 "production": { 60 "production": {
57 "browserTarget": "hello-world-app:build:production" 61 "browserTarget": "gnunet-webui:build:production"
58 } 62 }
59 } 63 }
60 }, 64 },
61 "extract-i18n": { 65 "extract-i18n": {
62 "builder": "@angular-devkit/build-angular:extract-i18n", 66 "builder": "@angular-devkit/build-angular:extract-i18n",
63 "options": { 67 "options": {
64 "browserTarget": "hello-world-app:build" 68 "browserTarget": "gnunet-webui:build"
65 } 69 }
66 }, 70 },
67 "test": { 71 "test": {
@@ -95,7 +99,7 @@
95 } 99 }
96 } 100 }
97 }, 101 },
98 "hello-world-app-e2e": { 102 "gnunet-webui-e2e": {
99 "root": "e2e/", 103 "root": "e2e/",
100 "projectType": "application", 104 "projectType": "application",
101 "architect": { 105 "architect": {
@@ -103,7 +107,7 @@
103 "builder": "@angular-devkit/build-angular:protractor", 107 "builder": "@angular-devkit/build-angular:protractor",
104 "options": { 108 "options": {
105 "protractorConfig": "e2e/protractor.conf.js", 109 "protractorConfig": "e2e/protractor.conf.js",
106 "devServerTarget": "hello-world-app:serve" 110 "devServerTarget": "gnunet-webui:serve"
107 } 111 }
108 }, 112 },
109 "lint": { 113 "lint": {
@@ -118,5 +122,5 @@
118 } 122 }
119 } 123 }
120 }, 124 },
121 "defaultProject": "hello-world-app" 125 "defaultProject": "gnunet-webui"
122} \ No newline at end of file 126}