Skip to content

Commit 4c23580

Browse files
author
Oliver Strik
committed
feat: update to angular 14
1 parent 0934857 commit 4c23580

19 files changed

+9071
-14592
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ speed-measure-plugin*.json
3333
.history/*
3434

3535
# misc
36+
/.angular/cache
3637
/.sass-cache
3738
/connect.lock
3839
/coverage

angular.json

+10-31
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,6 @@
2828
"tsConfig": "projects/klippa/ngx-enhancy-forms/tsconfig.spec.json",
2929
"karmaConfig": "projects/klippa/ngx-enhancy-forms/karma.conf.js"
3030
}
31-
},
32-
"lint": {
33-
"builder": "@angular-devkit/build-angular:tslint",
34-
"options": {
35-
"tsConfig": [
36-
"projects/klippa/ngx-enhancy-forms/tsconfig.lib.json",
37-
"projects/klippa/ngx-enhancy-forms/tsconfig.spec.json"
38-
],
39-
"exclude": [
40-
"**/node_modules/**"
41-
]
42-
}
4331
}
4432
}
4533
},
@@ -62,7 +50,6 @@
6250
"main": "projects/demo/src/main.ts",
6351
"polyfills": "projects/demo/src/polyfills.ts",
6452
"tsConfig": "projects/demo/tsconfig.app.json",
65-
"aot": true,
6653
"assets": [
6754
"projects/demo/src/favicon.ico",
6855
"projects/demo/src/assets"
@@ -71,7 +58,13 @@
7158
"projects/demo/src/styles.scss",
7259
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
7360
],
74-
"scripts": []
61+
"scripts": [],
62+
"vendorChunk": true,
63+
"extractLicenses": false,
64+
"buildOptimizer": false,
65+
"sourceMap": true,
66+
"optimization": false,
67+
"namedChunks": true
7568
},
7669
"configurations": {
7770
"production": {
@@ -84,7 +77,6 @@
8477
"optimization": true,
8578
"outputHashing": "all",
8679
"sourceMap": false,
87-
"extractCss": true,
8880
"namedChunks": false,
8981
"extractLicenses": true,
9082
"vendorChunk": false,
@@ -102,7 +94,8 @@
10294
}
10395
]
10496
}
105-
}
97+
},
98+
"defaultConfiguration": ""
10699
},
107100
"serve": {
108101
"builder": "@angular-devkit/build-angular:dev-server",
@@ -138,19 +131,6 @@
138131
"scripts": []
139132
}
140133
},
141-
"lint": {
142-
"builder": "@angular-devkit/build-angular:tslint",
143-
"options": {
144-
"tsConfig": [
145-
"projects/demo/tsconfig.app.json",
146-
"projects/demo/tsconfig.spec.json",
147-
"projects/demo/e2e/tsconfig.json"
148-
],
149-
"exclude": [
150-
"**/node_modules/**"
151-
]
152-
}
153-
},
154134
"e2e": {
155135
"builder": "@angular-devkit/build-angular:protractor",
156136
"options": {
@@ -165,6 +145,5 @@
165145
}
166146
}
167147
}
168-
},
169-
"defaultProject": "@klippa/ngx-enhancy-forms"
148+
}
170149
}

0 commit comments

Comments
 (0)