From 4dd248e6c802d6d61cd76df0767203677400c125 Mon Sep 17 00:00:00 2001 From: Kevin Dangoor Date: Mon, 24 Mar 2025 17:11:39 -0400 Subject: [PATCH] Set Babel up for node 20 --- babel.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index d19d38b..c3ed333 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,6 @@ module.exports = { presets: [ - ['@babel/preset-env', { targets: { node: 'current' } }], + ['@babel/preset-env', { targets: { node: '20' } }], '@babel/preset-typescript', ], }; \ No newline at end of file