diff --git a/tsconfig.config.json b/tsconfig.config.json index 6b5a208..48ba8af 100644 --- a/tsconfig.config.json +++ b/tsconfig.config.json @@ -8,7 +8,9 @@ ], "compilerOptions": { "composite": true, + "types": ["node"], "ignoreDeprecations": "5.0", - "types": ["node"] + "verbatimModuleSyntax": true, + "module": "esnext" } } diff --git a/vite.config.js b/vite.config.js index 6cdfa18..1e21411 100644 --- a/vite.config.js +++ b/vite.config.js @@ -63,4 +63,5 @@ export default defineConfig({ optimizeDeps: { include: ['esri-loader'], }, + base: './', })