We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4dbd7 commit 62449f3Copy full SHA for 62449f3
src/App.tsx
@@ -38,6 +38,7 @@ const zarrReader = await ZarrReader.initialize({
38
varName: VAR_NAME,
39
});
40
41
+//@ts-expect-error ignoring for now
42
function DeckGLOverlay(props) {
43
const overlay = useControl(() => new DeckOverlay(props));
44
overlay.setProps(props);
vite.config.ts
@@ -4,4 +4,7 @@ import react from "@vitejs/plugin-react";
4
// https://vite.dev/config/
5
export default defineConfig({
6
plugins: [react()],
7
+ build: {
8
+ target: "ES2022",
9
+ },
10
0 commit comments