File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
packages/kbn-babel-preset Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,19 @@ const plugins = [
2828 // See https://github.com/babel/proposals/issues/12 for progress
2929 require . resolve ( '@babel/plugin-proposal-class-properties' ) ,
3030
31- // Optional Chaining proposal is stage 3 (https://github.com/tc39/proposal-optional-chaining)
31+ // Optional Chaining proposal is stage 4 (https://github.com/tc39/proposal-optional-chaining)
3232 // Need this since we are using TypeScript 3.7+
3333 require . resolve ( '@babel/plugin-proposal-optional-chaining' ) ,
34- // Nullish coalescing proposal is stage 3 (https://github.com/tc39/proposal-nullish-coalescing)
34+
35+ // Nullish coalescing proposal is stage 4 (https://github.com/tc39/proposal-nullish-coalescing)
3536 // Need this since we are using TypeScript 3.7+
3637 require . resolve ( '@babel/plugin-proposal-nullish-coalescing-operator' ) ,
3738
38- // Proposal is on stage 4 (https://github.com/tc39/proposal-export-ns-from)
39+ // Proposal is on stage 4, and included in ECMA-262 (https://github.com/tc39/proposal-export-ns-from)
3940 // Need this since we are using TypeScript 3.8+
4041 require . resolve ( '@babel/plugin-proposal-export-namespace-from' ) ,
4142
42- // Proposal is on stage 4 (https://github.com/tc39/proposal-export-ns-from)
43+ // Proposal is on stage 4, and included in ECMA-262 (https://github.com/tc39/proposal-export-ns-from)
4344 // Need this since we are using TypeScript 3.9+
4445 require . resolve ( '@babel/plugin-proposal-private-methods' ) ,
4546] ;
You can’t perform that action at this time.
0 commit comments