From 4de0b9ad11bda2435d12c81167810853c23ca22c Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Tue, 11 Oct 2022 16:10:19 +0200 Subject: [PATCH] Avoid warning on compilation --- babel.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index d031248a62..6380fdbab0 100644 --- a/babel.config.js +++ b/babel.config.js @@ -65,7 +65,8 @@ module.exports = function(api) { async: false } ], - ["@babel/plugin-proposal-private-property-in-object", { "loose": true }] + ["@babel/plugin-proposal-private-property-in-object", { "loose": true }], + ["@babel/plugin-proposal-private-methods", { "loose": true }] ].filter(Boolean) } }