build: use TS 3.6.4#15847
Conversation
| "peerDependencies": { | ||
| "@angular/compiler-cli": "^8.0.0-beta.0 || ^8.1.0-beta.0 || ^8.2.0-beta.0 || ^8.3.0-beta.0 || ^8.4.0-beta.0 || >=9.0.0-beta < 9", | ||
| "typescript": ">=3.4 < 3.6", | ||
| "typescript": ">=3.4 < 3.7", |
There was a problem hiding this comment.
Maybe we should update the peerDeps to only support Angular 9 and TypeScript 3.6?
| "peerDependencies": { | ||
| "@angular/compiler-cli": "^8.0.0-beta.0 || ^8.1.0-beta.0 || ^8.2.0-beta.0 || ^8.3.0-beta.0 || ^8.4.0-beta.0 || >=9.0.0-beta < 9", | ||
| "typescript": ">=3.1 < 3.6" | ||
| "typescript": ">=3.1 < 3.7" |
There was a problem hiding this comment.
Maybe we should update the peerDeps to only support Angular 9 and TypeScript 3.6?
FW dropped support for previous TS versions angular/angular#32946
| "peerDependencies": { | ||
| "@angular/compiler-cli": "^8.0.0-beta.0 || ^8.1.0-beta.0 || ^8.2.0-beta.0 || ^8.3.0-beta.0 || ^8.4.0-beta.0 || >=9.0.0-beta < 9", | ||
| "typescript": ">=3.1 < 3.6" | ||
| "@angular/compiler-cli": ">=9.0.0-beta < 10", |
There was a problem hiding this comment.
We should track this so that it is changed to ^9.0.0 once the final release is out.
This should really be using Ivy but was getting the error below on every second build. `ERROR in Cannot read property 'incrementalState' of null`
| "enableIvy": true, | ||
| // TODO: debug this problem. | ||
| // This should really be true but was getting the error below on every second build. | ||
| // `ERROR in Cannot read property 'incrementalState' of null` |
There was a problem hiding this comment.
Tracking it in #15857
Note: on master Ivy is disabled for this test too. This PR originally tried to enable it and then I rolled the change back so that this PR can go forward and the problem can be investigated separately.
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Blocked on angular/angular#32946 being merged and released.