-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix TS5 + ESM hang; and upgrade dev dependencies to ng17 (#2197)
* fix(ts5): Update build dependencies and types for TS 5 This update appears to fix #2138. It builds with TS 5, and all tests and example tests pass. fixes: [Bug]: ESM with TypeScript >= 5.0 hangs forever #2138 * chore(deps): Add Husky dev dependency Husky is required by the postinstall script, but was previously missing. * chore(upgrade ng): Upgrade to ng17 latest Tests pass, and example tests pass. resolves: [Feature]: Angular 17 support #2196 * chore(dedupe): yarn dedupe * fix(eslint): Disable eslint warnings due to use of "any" * chore(deps): Change dev dependency for TS to match @angular/compiler restrictions
- Loading branch information
Showing
5 changed files
with
2,335 additions
and
1,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,14 +63,14 @@ | |
"typescript": ">=4.4" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "^16.0.4", | ||
"@angular/animations": "^16.0.4", | ||
"@angular/common": "^16.0.4", | ||
"@angular/compiler": "^16.0.4", | ||
"@angular/compiler-cli": "~16.0.4", | ||
"@angular/core": "^16.0.4", | ||
"@angular/platform-browser": "^16.0.4", | ||
"@angular/platform-browser-dynamic": "^16.0.4", | ||
"@angular-devkit/build-angular": "^17.0.8", | ||
"@angular/animations": "^17.0.8", | ||
"@angular/common": "^17.0.8", | ||
"@angular/compiler": "^17.0.8", | ||
"@angular/compiler-cli": "~17.0.8", | ||
"@angular/core": "^17.0.8", | ||
"@angular/platform-browser": "^17.0.8", | ||
"@angular/platform-browser-dynamic": "^17.0.8", | ||
"@commitlint/cli": "^17.6.7", | ||
"@commitlint/config-angular": "^17.6.7", | ||
"@jest/transform": "^29.5.0", | ||
|
@@ -94,6 +94,7 @@ | |
"fs-extra": "^11.1.1", | ||
"github-files-fetcher": "^1.6.0", | ||
"glob": "^10.3.1", | ||
"husky": "^8.0.3", | ||
"jest": "^29.5.0", | ||
"jest-snapshot-serializer-raw": "^1.2.0", | ||
"pinst": "^3.0.0", | ||
|
@@ -102,8 +103,8 @@ | |
"rxjs": "^7.8.1", | ||
"ts-node": "^10.9.1", | ||
"tslib": "^2.5.2", | ||
"typescript": "^4.9.5", | ||
"zone.js": "^0.13.0" | ||
"typescript": "^5.2.0 <5.3.0", | ||
"zone.js": "^0.14.2" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.