Skip to content

Commit 5651d30

Browse files
authored
Merge pull request #22 from ajaysinghj8/angular-v19-upgrade
Angular v19 upgrade
2 parents 685fedb + 5bce9a8 commit 5651d30

28 files changed

Lines changed: 16025 additions & 91 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
# dependencies
88
/node_modules
99
/bower_components
10+
example/node_modules
11+
example/dist
12+
example/.angular
1013

1114
# IDEs and editors
1215
/.idea

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
make.js
2+
example
23
# compiled output
34
/.tmp
45
/src

example/angular.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"example": {
7+
"projectType": "application",
8+
"schematics": {},
9+
"root": "",
10+
"sourceRoot": "src",
11+
"prefix": "app",
12+
"architect": {
13+
"build": {
14+
"builder": "@angular/build:application",
15+
"options": {
16+
"outputPath": "dist/example",
17+
"index": "src/index.html",
18+
"browser": "src/main.ts",
19+
"polyfills": ["zone.js"],
20+
"tsConfig": "tsconfig.app.json",
21+
"styles": ["src/styles.css"],
22+
"scripts": []
23+
},
24+
"configurations": {
25+
"production": {
26+
"budgets": [
27+
{
28+
"type": "initial",
29+
"maximumWarning": "500kB",
30+
"maximumError": "1MB"
31+
}
32+
],
33+
"outputHashing": "all"
34+
},
35+
"development": {
36+
"optimization": false,
37+
"extractLicenses": false,
38+
"sourceMap": true
39+
}
40+
},
41+
"defaultConfiguration": "production"
42+
},
43+
"serve": {
44+
"builder": "@angular/build:dev-server",
45+
"configurations": {
46+
"production": {
47+
"buildTarget": "example:build:production"
48+
},
49+
"development": {
50+
"buildTarget": "example:build:development"
51+
}
52+
},
53+
"defaultConfiguration": "development"
54+
}
55+
}
56+
}
57+
},
58+
"cli": {
59+
"analytics": "939c150e-d73b-4e0d-bd5a-fa88a285d32d"
60+
}
61+
}

0 commit comments

Comments
 (0)