Skip to content

Commit

Permalink
fix(utils): add ES2019 as valid ecmaVersion (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored and bradzacher committed Jul 23, 2019
1 parent 1389393 commit d11fbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/experimental-utils/src/ts-eslint/ParserOptions.ts
Expand Up @@ -4,7 +4,7 @@ export interface ParserOptions {
range?: boolean;
tokens?: boolean;
sourceType?: 'script' | 'module';
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 2015 | 2016 | 2017 | 2018;
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 10 | 2015 | 2016 | 2017 | 2018 | 2019;
ecmaFeatures?: {
globalReturn?: boolean;
jsx?: boolean;
Expand Down

0 comments on commit d11fbbe

Please sign in to comment.