feat: add support for typescript 3.2 (#27536)

https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-2.html
https://blogs.msdn.microsoft.com/typescript/2018/11/29/announcing-typescript-3-2/

Any application using tsickle for closure compatibility will need to update it's tsickle
dependency to 0.34

PR Close #27536
This commit is contained in:
Igor Minar
2018-12-06 23:01:08 -08:00
committed by Miško Hevery
parent b04bc5d06c
commit 17e702bf8b
13 changed files with 200 additions and 34 deletions

View File

@ -79,7 +79,7 @@ const MIN_TS_VERSION = '3.1.1';
* ∀ supported typescript version v, v < MAX_TS_VERSION
* MAX_TS_VERSION is not considered as a supported TypeScript version
*/
const MAX_TS_VERSION = '3.2.0';
const MAX_TS_VERSION = '3.3.0';
class AngularCompilerProgram implements Program {
private rootNames: string[];