Skip to content

Commit 11df300

Browse files
committed
Update Angular 19.0.1
1 parent 910bae7 commit 11df300

File tree

270 files changed

+4009
-4731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+4009
-4731
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ trim_trailing_whitespace = true
1010

1111
[*.ts]
1212
quote_type = single
13+
ij_typescript_use_double_quotes = false
1314

1415
[*.md]
1516
max_line_length = off

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Angular 18 Example Server Side Rendering
1+
# Angular 19 Example Server Side Rendering
22

3-
> An Angular starter kit featuring [Angular 18.2.12](https://angular.io), [Angular CLI 18.2.12](https://cli.angular.io/)
3+
> An Angular starter kit featuring [Angular 19.0.1](https://angular.io), [Angular CLI 19.0.2](https://cli.angular.io/)
44
55
> it's part of a repo series designed to create a Progressive Web App with Angular
66

angular.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"server": "src/main.server.ts",
4040
"prerender": true,
4141
"ssr": {
42-
"entry": "server.ts"
42+
"entry": "src/server.ts"
4343
}
4444
},
4545
"configurations": {
@@ -52,8 +52,8 @@
5252
},
5353
{
5454
"type": "anyComponentStyle",
55-
"maximumWarning": "2kB",
56-
"maximumError": "4kB"
55+
"maximumWarning": "4kB",
56+
"maximumError": "8kB"
5757
}
5858
],
5959
"outputHashing": "all"
@@ -121,8 +121,7 @@
121121
},
122122
"cli": {
123123
"schematicCollections": [
124-
"@angular-eslint/schematics"
125-
],
126-
"analytics": false
124+
"angular-eslint"
125+
]
127126
}
128-
}
127+
}

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const eslint = require("@eslint/js");
33
const tseslint = require("typescript-eslint");
44
const angular = require("angular-eslint");
5-
5+
66
module.exports = tseslint.config(
77
{
88
files: ["**/*.ts"],
@@ -38,7 +38,7 @@ module.exports = tseslint.config(
3838
"newline-before-return": "error",
3939
"space-before-blocks": "error",
4040
"no-alert": "error"
41-
},
41+
},
4242
},
4343
{
4444
files: ["**/*.html"],

0 commit comments

Comments
 (0)