Skip to content

Commit a9c67db

Browse files
committed
build: upgrade to angular 18
1 parent 056e1f3 commit a9c67db

File tree

100 files changed

+5052
-4058
lines changed

Some content is hidden

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

100 files changed

+5052
-4058
lines changed

.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ trim_trailing_whitespace = true
1010

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

1415
[*.md]
1516
max_line_length = off

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

33
# Compiled output
44
/dist

angular.json

+19-13
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,33 @@
2626
"tsConfig": "tsconfig.app.json",
2727
"inlineStyleLanguage": "scss",
2828
"assets": [
29-
"src/favicon.ico",
30-
"src/assets"
29+
{
30+
"glob": "**/*",
31+
"input": "public"
32+
}
3133
],
3234
"styles": [
3335
"src/styles.scss"
3436
],
35-
"scripts": []
37+
"scripts": [],
38+
"server": "src/main.server.ts",
39+
"prerender": true,
40+
"ssr": {
41+
"entry": "server.ts"
42+
}
3643
},
3744
"configurations": {
3845
"production": {
3946
"budgets": [
4047
{
4148
"type": "initial",
42-
"maximumWarning": "500kb",
43-
"maximumError": "1mb"
49+
"maximumWarning": "500kB",
50+
"maximumError": "1MB"
4451
},
4552
{
4653
"type": "anyComponentStyle",
47-
"maximumWarning": "2kb",
48-
"maximumError": "4kb"
54+
"maximumWarning": "2kB",
55+
"maximumError": "4kB"
4956
}
5057
],
5158
"outputHashing": "all"
@@ -71,10 +78,7 @@
7178
"defaultConfiguration": "development"
7279
},
7380
"extract-i18n": {
74-
"builder": "@angular-devkit/build-angular:extract-i18n",
75-
"options": {
76-
"buildTarget": "purpost-client:build"
77-
}
81+
"builder": "@angular-devkit/build-angular:extract-i18n"
7882
},
7983
"test": {
8084
"builder": "@angular-devkit/build-angular:karma",
@@ -86,8 +90,10 @@
8690
"tsConfig": "tsconfig.spec.json",
8791
"inlineStyleLanguage": "scss",
8892
"assets": [
89-
"src/favicon.ico",
90-
"src/assets"
93+
{
94+
"glob": "**/*",
95+
"input": "public"
96+
}
9197
],
9298
"styles": [
9399
"src/styles.scss"

0 commit comments

Comments
 (0)