Skip to content

Commit

Permalink
fix wallet-connect type-checking
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitayutanov committed Jan 21, 2025
1 parent 32d8a41 commit 2d8619e
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions utils/wallet-connect/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,11 @@ import { defineConfig } from 'vite';
import svgr from 'vite-plugin-svgr';
import dts from 'vite-plugin-dts';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
import checker from 'vite-plugin-checker';

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
svgr(),
nodePolyfills(),
dts({
exclude: ['src/preview'],
}),
],
plugins: [react(), svgr(), nodePolyfills(), dts({ exclude: ['src/preview'] }), checker({ typescript: true })],
build: {
lib: {
entry: resolve(__dirname, 'src/components/index.ts'),
Expand Down

0 comments on commit 2d8619e

Please sign in to comment.