|
1 | | -{ |
2 | | - "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
3 | | - "version": 1, |
4 | | - "newProjectRoot": "projects", |
5 | | - "projects": { |
6 | | - "AspnetCore-Angular-Universal": { |
7 | | - "root": "", |
8 | | - "sourceRoot": "ClientApp", |
9 | | - "projectType": "application", |
10 | | - "prefix": "app", |
11 | | - "schematics": {}, |
12 | | - "architect": { |
13 | | - "build": { |
14 | | - "builder": "@angular-devkit/build-angular:browser", |
15 | | - "options": { |
16 | | - "outputPath": "wwwroot/dist", |
17 | | - "main": "ClientApp/boot-browser.ts", |
18 | | - "polyfills": "ClientApp/polyfills/polyfills.ts", |
19 | | - "tsConfig": "ClientApp/tsconfig.app.json", |
20 | | - "assets": [ |
21 | | - "src/assets", |
22 | | - { |
23 | | - "glob": "**/*", |
24 | | - "input": "node_modules/ng2-pdfjs-viewer/pdfjs", |
25 | | - "output": "/assets/pdfjs" |
26 | | - } |
27 | | - ], |
28 | | - "styles": [], |
29 | | - "scripts": [] |
30 | | - }, |
31 | | - "configurations": { |
32 | | - "production": { |
33 | | - "fileReplacements": [ |
34 | | - { |
35 | | - "replace": "ClientApp/environments/environment.ts", |
36 | | - "with": "ClientApp/environments/environment.prod.ts" |
37 | | - } |
38 | | - ], |
39 | | - "optimization": true, |
40 | | - "outputHashing": "all", |
41 | | - "sourceMap": false, |
42 | | - "extractCss": true, |
43 | | - "namedChunks": false, |
44 | | - "aot": true, |
45 | | - "extractLicenses": true, |
46 | | - "vendorChunk": false, |
47 | | - "buildOptimizer": true |
48 | | - } |
49 | | - } |
50 | | - }, |
51 | | - "serve": { |
52 | | - "builder": "@angular-devkit/build-angular:dev-server", |
53 | | - "options": { |
54 | | - "browserTarget": "AspnetCore-Angular-Universal:build" |
55 | | - }, |
56 | | - "configurations": { |
57 | | - "production": { |
58 | | - "browserTarget": "AspnetCore-Angular-Universal:build:production" |
59 | | - } |
60 | | - } |
61 | | - }, |
62 | | - "extract-i18n": { |
63 | | - "builder": "@angular-devkit/build-angular:extract-i18n", |
64 | | - "options": { |
65 | | - "browserTarget": "AspnetCore-Angular-Universal:build" |
66 | | - } |
67 | | - }, |
68 | | - "test": { |
69 | | - "builder": "@angular-devkit/build-angular:karma", |
70 | | - "options": { |
71 | | - "main": "ClientApp/test.ts", |
72 | | - "polyfills": "ClientApp/polyfills.ts", |
73 | | - "tsConfig": "ClientApp/tsconfig.spec.json", |
74 | | - "karmaConfig": "ClientApp/karma.conf.js", |
75 | | - "styles": ["ClientApp/styles.css"], |
76 | | - "scripts": [], |
77 | | - "assets": ["ClientApp/favicon.ico", "ClientApp/assets"] |
78 | | - } |
79 | | - }, |
80 | | - "lint": { |
81 | | - "builder": "@angular-devkit/build-angular:tslint", |
82 | | - "options": { |
83 | | - "tsConfig": [ |
84 | | - "ClientApp/tsconfig.app.json", |
85 | | - "ClientApp/tsconfig.spec.json" |
86 | | - ], |
87 | | - "exclude": ["**/node_modules/**"] |
88 | | - } |
89 | | - } |
90 | | - } |
91 | | - }, |
92 | | - "AspnetCore-Angular-Universal-e2e": { |
93 | | - "root": "e2e/", |
94 | | - "projectType": "application", |
95 | | - "architect": { |
96 | | - "e2e": { |
97 | | - "builder": "@angular-devkit/build-angular:protractor", |
98 | | - "options": { |
99 | | - "protractorConfig": "e2e/protractor.conf.js", |
100 | | - "devServerTarget": "AspnetCore-Angular-Universal:serve" |
101 | | - } |
102 | | - }, |
103 | | - "lint": { |
104 | | - "builder": "@angular-devkit/build-angular:tslint", |
105 | | - "options": { |
106 | | - "tsConfig": "e2e/tsconfig.e2e.json", |
107 | | - "exclude": ["**/node_modules/**"] |
108 | | - } |
109 | | - } |
110 | | - } |
111 | | - } |
112 | | - }, |
113 | | - "defaultProject": "AspnetCore-Angular-Universal" |
114 | | -} |
| 1 | +{ |
| 2 | + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
| 3 | + "version": 1, |
| 4 | + "newProjectRoot": "projects", |
| 5 | + "projects": { |
| 6 | + "AspnetCore-Angular-Universal": { |
| 7 | + "root": "", |
| 8 | + "sourceRoot": "ClientApp", |
| 9 | + "projectType": "application", |
| 10 | + "prefix": "app", |
| 11 | + "schematics": {}, |
| 12 | + "architect": { |
| 13 | + "build": { |
| 14 | + "builder": "@angular-devkit/build-angular:browser", |
| 15 | + "options": { |
| 16 | + "outputPath": "wwwroot/dist", |
| 17 | + "main": "ClientApp/boot-browser.ts", |
| 18 | + "tsConfig": "ClientApp/tsconfig.app.json", |
| 19 | + "assets": [ |
| 20 | + "src/assets", |
| 21 | + { |
| 22 | + "glob": "**/*", |
| 23 | + "input": "node_modules/ng2-pdfjs-viewer/pdfjs", |
| 24 | + "output": "/assets/pdfjs" |
| 25 | + } |
| 26 | + ], |
| 27 | + "styles": [], |
| 28 | + "scripts": [] |
| 29 | + }, |
| 30 | + "configurations": { |
| 31 | + "production": { |
| 32 | + "fileReplacements": [ |
| 33 | + { |
| 34 | + "replace": "ClientApp/environments/environment.ts", |
| 35 | + "with": "ClientApp/environments/environment.prod.ts" |
| 36 | + } |
| 37 | + ], |
| 38 | + "optimization": true, |
| 39 | + "outputHashing": "all", |
| 40 | + "sourceMap": false, |
| 41 | + "extractCss": true, |
| 42 | + "namedChunks": false, |
| 43 | + "aot": true, |
| 44 | + "extractLicenses": true, |
| 45 | + "vendorChunk": false, |
| 46 | + "buildOptimizer": true |
| 47 | + } |
| 48 | + } |
| 49 | + }, |
| 50 | + "serve": { |
| 51 | + "builder": "@angular-devkit/build-angular:dev-server", |
| 52 | + "options": { |
| 53 | + "browserTarget": "AspnetCore-Angular-Universal:build" |
| 54 | + }, |
| 55 | + "configurations": { |
| 56 | + "production": { |
| 57 | + "browserTarget": "AspnetCore-Angular-Universal:build:production" |
| 58 | + } |
| 59 | + } |
| 60 | + }, |
| 61 | + "extract-i18n": { |
| 62 | + "builder": "@angular-devkit/build-angular:extract-i18n", |
| 63 | + "options": { |
| 64 | + "browserTarget": "AspnetCore-Angular-Universal:build" |
| 65 | + } |
| 66 | + }, |
| 67 | + "test": { |
| 68 | + "builder": "@angular-devkit/build-angular:karma", |
| 69 | + "options": { |
| 70 | + "main": "ClientApp/test.ts", |
| 71 | + "polyfills": "ClientApp/polyfills.ts", |
| 72 | + "tsConfig": "ClientApp/tsconfig.spec.json", |
| 73 | + "karmaConfig": "ClientApp/karma.conf.js", |
| 74 | + "styles": ["ClientApp/styles.css"], |
| 75 | + "scripts": [], |
| 76 | + "assets": ["ClientApp/favicon.ico", "ClientApp/assets"] |
| 77 | + } |
| 78 | + }, |
| 79 | + "lint": { |
| 80 | + "builder": "@angular-devkit/build-angular:tslint", |
| 81 | + "options": { |
| 82 | + "tsConfig": [ |
| 83 | + "ClientApp/tsconfig.app.json", |
| 84 | + "ClientApp/tsconfig.spec.json" |
| 85 | + ], |
| 86 | + "exclude": ["**/node_modules/**"] |
| 87 | + } |
| 88 | + } |
| 89 | + } |
| 90 | + }, |
| 91 | + "AspnetCore-Angular-Universal-e2e": { |
| 92 | + "root": "e2e/", |
| 93 | + "projectType": "application", |
| 94 | + "architect": { |
| 95 | + "e2e": { |
| 96 | + "builder": "@angular-devkit/build-angular:protractor", |
| 97 | + "options": { |
| 98 | + "protractorConfig": "e2e/protractor.conf.js", |
| 99 | + "devServerTarget": "AspnetCore-Angular-Universal:serve" |
| 100 | + } |
| 101 | + }, |
| 102 | + "lint": { |
| 103 | + "builder": "@angular-devkit/build-angular:tslint", |
| 104 | + "options": { |
| 105 | + "tsConfig": "e2e/tsconfig.e2e.json", |
| 106 | + "exclude": ["**/node_modules/**"] |
| 107 | + } |
| 108 | + } |
| 109 | + } |
| 110 | + } |
| 111 | + }, |
| 112 | + "defaultProject": "AspnetCore-Angular-Universal" |
| 113 | +} |
0 commit comments