diff --git a/tsconfig.node.json b/tsconfig.node.json index 0d3d714..e2ae858 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -5,18 +5,24 @@ "module": "ESNext", "skipLibCheck": true, - /* Bundler mode */ + /* Module Resolution */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, - /* Linting */ + /* Type Checking */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "forceConsistentCasingInFileNames": true, + + /* Additional Options */ + "esModuleInterop": true, + "resolveJsonModule": true }, - "include": ["vite.config.ts"] -} + "include": ["vite.config.ts"], + "exclude": ["node_modules", "dist"] +} \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index c7cc947..f8b9b7c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,7 +4,7 @@ import react from '@vitejs/plugin-react'; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], - // base: '/', // Replace with your repository name + base: '/', // Replace with your repository name optimizeDeps: { exclude: ['lucide-react'], },