From 169207c483f73e5f3ae9985069123a6d8e0c65c0 Mon Sep 17 00:00:00 2001 From: Rico Kahler Date: Thu, 11 Jan 2024 11:46:47 -0600 Subject: [PATCH] fix(test): use `"runtime": "automatic"` for `"@babel/preset-react"` --- .babelrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.babelrc b/.babelrc index 29939bbd6a8..16f94529eaf 100644 --- a/.babelrc +++ b/.babelrc @@ -13,7 +13,7 @@ } ], "@babel/preset-typescript", - "@babel/preset-react" + ["@babel/preset-react", {"runtime": "automatic"}] ], "plugins": ["@babel/plugin-proposal-class-properties"] }