|
11 | 11 | "prefix": "app",
|
12 | 12 | "architect": {
|
13 | 13 | "build": {
|
14 |
| - "builder": "@angular-devkit/build-angular:application", |
| 14 | + "builder": "@angular/build:application", |
15 | 15 | "options": {
|
16 | 16 | "outputPath": "dist/angular-starter",
|
17 | 17 | "index": "src/index.html",
|
|
57 | 57 | "defaultConfiguration": "production"
|
58 | 58 | },
|
59 | 59 | "serve": {
|
60 |
| - "builder": "@angular-devkit/build-angular:dev-server", |
| 60 | + "builder": "@angular/build:dev-server", |
61 | 61 | "configurations": {
|
62 | 62 | "production": {
|
63 | 63 | "buildTarget": "angular-starter:build:production"
|
|
69 | 69 | "defaultConfiguration": "development"
|
70 | 70 | },
|
71 | 71 | "extract-i18n": {
|
72 |
| - "builder": "@angular-devkit/build-angular:extract-i18n" |
| 72 | + "builder": "@angular/build:extract-i18n" |
73 | 73 | },
|
74 | 74 | "test": {
|
75 |
| - "builder": "@angular-devkit/build-angular:karma", |
| 75 | + "builder": "@angular/build:karma", |
76 | 76 | "options": {
|
77 | 77 | "polyfills": ["zone.js", "zone.js/testing"],
|
78 | 78 | "tsConfig": "tsconfig.spec.json",
|
|
88 | 88 | }
|
89 | 89 | }
|
90 | 90 | }
|
| 91 | + }, |
| 92 | + "schematics": { |
| 93 | + "@schematics/angular:component": { |
| 94 | + "type": "component" |
| 95 | + }, |
| 96 | + "@schematics/angular:directive": { |
| 97 | + "type": "directive" |
| 98 | + }, |
| 99 | + "@schematics/angular:service": { |
| 100 | + "type": "service" |
| 101 | + }, |
| 102 | + "@schematics/angular:guard": { |
| 103 | + "typeSeparator": "." |
| 104 | + }, |
| 105 | + "@schematics/angular:interceptor": { |
| 106 | + "typeSeparator": "." |
| 107 | + }, |
| 108 | + "@schematics/angular:module": { |
| 109 | + "typeSeparator": "." |
| 110 | + }, |
| 111 | + "@schematics/angular:pipe": { |
| 112 | + "typeSeparator": "." |
| 113 | + }, |
| 114 | + "@schematics/angular:resolver": { |
| 115 | + "typeSeparator": "." |
| 116 | + } |
91 | 117 | }
|
92 | 118 | }
|
0 commit comments