From a8b99f76f44ebcbf2ed3e26dee910a36d181e5cd Mon Sep 17 00:00:00 2001 From: Adam Wathan <4323180+adamwathan@users.noreply.github.com> Date: Wed, 13 Nov 2024 10:12:45 -0500 Subject: [PATCH] Fix Vite playground warnings --- playgrounds/vite/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playgrounds/vite/tsconfig.json b/playgrounds/vite/tsconfig.json index 2c0c2c0d9..8ff04861d 100644 --- a/playgrounds/vite/tsconfig.json +++ b/playgrounds/vite/tsconfig.json @@ -5,6 +5,7 @@ "module": "ESNext", "moduleDetection": "force", "allowJs": true, + "jsx": "react-jsx", /* Bundler mode */ "moduleResolution": "Bundler", @@ -20,6 +21,6 @@ "noFallthroughCasesInSwitch": true, "forceConsistentCasingInFileNames": true, }, - "include": ["**/*.ts"], + "include": ["**/*.ts", "**/*.tsx"], "exclude": ["node_modules"], }