Fix Vite playground warnings

This commit is contained in:
Adam Wathan 2024-11-13 10:12:45 -05:00
parent 0b908f3992
commit a8b99f76f4

View File

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