source: Farmatiko/ClientApp/angular.json@ 1db5673

Last change on this file since 1db5673 was ee137aa, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Added DataService and dialogs, all bindings needed implemented

  • Property mode set to 100644
File size: 4.3 KB
Line 
1{
2 "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3 "version": 1,
4 "newProjectRoot": "projects",
5 "projects": {
6 "Farmatiko": {
7 "root": "",
8 "sourceRoot": "src",
9 "projectType": "application",
10 "prefix": "app",
11 "schematics": {},
12 "architect": {
13 "build": {
14 "builder": "@angular-devkit/build-angular:browser",
15 "options": {
16 "progress": false,
17 "extractCss": true,
18 "outputPath": "dist",
19 "index": "src/index.html",
20 "main": "src/main.ts",
21 "polyfills": "src/polyfills.ts",
22 "tsConfig": "src/tsconfig.app.json",
23 "assets": [
24 "src/assets"
25 ],
26 "styles": [
27 "src/custom-theme.scss",
28 "node_modules/bootstrap/dist/css/bootstrap.min.css",
29 "src/styles.css"
30 ],
31 "scripts": []
32 },
33 "configurations": {
34 "production": {
35 "fileReplacements": [
36 {
37 "replace": "src/environments/environment.ts",
38 "with": "src/environments/environment.prod.ts"
39 }
40 ],
41 "optimization": true,
42 "outputHashing": "all",
43 "sourceMap": false,
44 "extractCss": true,
45 "namedChunks": false,
46 "aot": true,
47 "extractLicenses": true,
48 "vendorChunk": false,
49 "buildOptimizer": true
50 }
51 }
52 },
53 "serve": {
54 "builder": "@angular-devkit/build-angular:dev-server",
55 "options": {
56 "browserTarget": "Farmatiko:build",
57 "port": 80
58 },
59 "configurations": {
60 "production": {
61 "browserTarget": "Farmatiko:build:production"
62 }
63 }
64 },
65 "extract-i18n": {
66 "builder": "@angular-devkit/build-angular:extract-i18n",
67 "options": {
68 "browserTarget": "Farmatiko:build"
69 }
70 },
71 "test": {
72 "builder": "@angular-devkit/build-angular:karma",
73 "options": {
74 "main": "src/test.ts",
75 "polyfills": "src/polyfills.ts",
76 "tsConfig": "src/tsconfig.spec.json",
77 "karmaConfig": "src/karma.conf.js",
78 "styles": [
79 "src/styles.css"
80 ],
81 "scripts": [],
82 "assets": [
83 "src/assets"
84 ]
85 }
86 },
87 "lint": {
88 "builder": "@angular-devkit/build-angular:tslint",
89 "options": {
90 "tsConfig": [
91 "src/tsconfig.app.json",
92 "src/tsconfig.spec.json"
93 ],
94 "exclude": [
95 "**/node_modules/**"
96 ]
97 }
98 },
99 "server": {
100 "builder": "@angular-devkit/build-angular:server",
101 "options": {
102 "outputPath": "dist-server",
103 "main": "src/main.ts",
104 "tsConfig": "src/tsconfig.server.json"
105 },
106 "configurations": {
107 "dev": {
108 "optimization": true,
109 "outputHashing": "all",
110 "sourceMap": false,
111 "namedChunks": false,
112 "extractLicenses": true,
113 "vendorChunk": true
114 },
115 "production": {
116 "optimization": true,
117 "outputHashing": "all",
118 "sourceMap": false,
119 "namedChunks": false,
120 "extractLicenses": true,
121 "vendorChunk": false
122 }
123 }
124 }
125 }
126 },
127 "Farmatiko-e2e": {
128 "root": "e2e/",
129 "projectType": "application",
130 "architect": {
131 "e2e": {
132 "builder": "@angular-devkit/build-angular:protractor",
133 "options": {
134 "protractorConfig": "e2e/protractor.conf.js",
135 "devServerTarget": "Farmatiko:serve"
136 }
137 },
138 "lint": {
139 "builder": "@angular-devkit/build-angular:tslint",
140 "options": {
141 "tsConfig": "e2e/tsconfig.e2e.json",
142 "exclude": [
143 "**/node_modules/**"
144 ]
145 }
146 }
147 }
148 }
149 },
150 "defaultProject": "Farmatiko"
151}
Note: See TracBrowser for help on using the repository browser.