Skip to content

Commit d7b9521

Browse files
committed
update ts and zone.js
feat: Update to Angular 17 BREAKING CHANGE: Angular 16 is no longer supported
1 parent 03a704a commit d7b9521

File tree

5 files changed

+4782
-7794
lines changed

5 files changed

+4782
-7794
lines changed

.eslintrc.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
{ "argsIgnorePattern": "^_" }
3232
],
3333
"@typescript-eslint/restrict-template-expressions": "off",
34-
"@angular-eslint/prefer-standalone-component": "off"
34+
"@angular-eslint/prefer-standalone": "off",
35+
"@angular-eslint/prefer-standalone-component": "off",
36+
"@angular-eslint/consistent-component-styles": "off"
3537
}
3638
},
3739
{
@@ -58,6 +60,7 @@
5860
"@typescript-eslint/unbound-method": "off",
5961
"@typescript-eslint/no-explicit-any": "off",
6062
"@typescript-eslint/ban-types": "off",
63+
"@angular-eslint/prefer-standalone": "off",
6164
"@angular-eslint/prefer-standalone-component": "off",
6265
"no-unused-vars": "off",
6366
"@typescript-eslint/no-unused-vars": [
@@ -82,7 +85,9 @@
8285
"@angular-eslint/template/no-inline-styles": "off",
8386
"@angular-eslint/template/attributes-order": "off",
8487
"@angular-eslint/template/interactive-supports-focus": "off",
85-
"@angular-eslint/template/prefer-ngsrc": "off"
88+
"@angular-eslint/template/prefer-ngsrc": "off",
89+
"@angular-eslint/template/prefer-control-flow": "off",
90+
"@angular-eslint/template/prefer-self-closing-tags": "off"
8691
}
8792
}
8893
]

angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,18 +135,18 @@
135135
"builder": "@angular-devkit/build-angular:dev-server",
136136
"configurations": {
137137
"production": {
138-
"browserTarget": "sample-app:build:production"
138+
"buildTarget": "sample-app:build:production"
139139
},
140140
"development": {
141-
"browserTarget": "sample-app:build:development"
141+
"buildTarget": "sample-app:build:development"
142142
}
143143
},
144144
"defaultConfiguration": "development"
145145
},
146146
"extract-i18n": {
147147
"builder": "@angular-devkit/build-angular:extract-i18n",
148148
"options": {
149-
"browserTarget": "sample-app:build"
149+
"buildTarget": "sample-app:build"
150150
}
151151
},
152152
"test": {
@@ -283,18 +283,18 @@
283283
"builder": "@angular-devkit/build-angular:dev-server",
284284
"configurations": {
285285
"production": {
286-
"browserTarget": "customizations-example:build:production"
286+
"buildTarget": "customizations-example:build:production"
287287
},
288288
"development": {
289-
"browserTarget": "customizations-example:build:development"
289+
"buildTarget": "customizations-example:build:development"
290290
}
291291
},
292292
"defaultConfiguration": "development"
293293
},
294294
"extract-i18n": {
295295
"builder": "@angular-devkit/build-angular:extract-i18n",
296296
"options": {
297-
"browserTarget": "customizations-example:build"
297+
"buildTarget": "customizations-example:build"
298298
}
299299
},
300300
"test": {

0 commit comments

Comments
 (0)