From 9489891dcd7e3c97a57525231594a920ba039299 Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Tue, 9 Aug 2022 15:10:37 -0400 Subject: [PATCH] chore(remix): Update integration test tsconfig Switch to using jsx: react --- packages/remix/test/integration/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/remix/test/integration/tsconfig.json b/packages/remix/test/integration/tsconfig.json index 2129c1a599f6..b1870b9c0d07 100644 --- a/packages/remix/test/integration/tsconfig.json +++ b/packages/remix/test/integration/tsconfig.json @@ -4,7 +4,7 @@ "lib": ["DOM", "DOM.Iterable", "ES2019"], "isolatedModules": true, "esModuleInterop": true, - "jsx": "react-jsx", + "jsx": "react", "moduleResolution": "node", "resolveJsonModule": true, "target": "ES2019",