Update to angular 17 (#97)

* Added tags

* Update to angular 14

* Update to angular 15

* Update typescript to ^4.9.3

* Update to angular 16

* Ref added strict null checking for parentElement

* Update typescript to ^5.2

* Update zone.js to ^0.14.1

* Update typescript to 5.2.2

* Update to angular 17

* Fix fixed dependencies

* Fix test suite
This commit is contained in:
Lorenzo Iovino 2024-01-10 00:33:32 +01:00 committed by GitHub
parent e0bc123cd7
commit f2a8edb15f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 2468 additions and 6182 deletions

View file

@ -16,7 +16,9 @@
"outputPath": "dist",
"index": "./src/index.html",
"main": "./src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
@ -61,66 +63,41 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "dev:build"
"buildTarget": "dev:build"
},
"configurations": {
"production": {
"browserTarget": "dev:build:production"
"buildTarget": "dev:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "dev:build"
"buildTarget": "dev:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "dev:serve"
},
"configurations": {
"production": {
"devServerTarget": "dev:serve:production"
}
}
}
}
}
},
"defaultProject": "dev",
"cli": {
"analytics": false
}