axe-me / vite-plugin-node

Vite plugin to run your node dev server with HMR!
990 stars 46 forks source link

How to add typescript typecheck? #21

Closed Wharley01 closed 2 years ago

Wharley01 commented 2 years ago

Plugin working fine, but how do i let vite do type check ?

axe-me commented 2 years ago

both esbuild or swc dont have type check. you can rely on the IDE to do the type check or use a vite plugin like https://github.com/fi3ework/vite-plugin-checker

Wharley01 commented 2 years ago

both esbuild or swc dont have type check. you can rely on the IDE to do the type check or use a vite plugin like https://github.com/fi3ework/vite-plugin-checker

Thank you for this