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"], }