Skip to content

Commit d11fbbe

Browse files
SimenBbradzacher
authored andcommitted
fix(utils): add ES2019 as valid ecmaVersion (#746)
1 parent 1389393 commit d11fbbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/experimental-utils/src/ts-eslint/ParserOptions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export interface ParserOptions {
44
range?: boolean;
55
tokens?: boolean;
66
sourceType?: 'script' | 'module';
7-
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 2015 | 2016 | 2017 | 2018;
7+
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 10 | 2015 | 2016 | 2017 | 2018 | 2019;
88
ecmaFeatures?: {
99
globalReturn?: boolean;
1010
jsx?: boolean;

0 commit comments

Comments
 (0)