diff --git a/bun.lockb b/bun.lockb index d19b06b..f6b58af 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index d22827b..fa2ac8e 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "typescript": "^5.6.2", "typescript-eslint": "^8.11.0", "vite": "^5.4.8", + "vite-plugin-checker": "^0.8.0", "vite-plugin-eslint": "^1.8.1", "vite-plugin-kaioken": "^0.13.1" } diff --git a/vite.config.ts b/vite.config.ts index c03305d..bdf4b45 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,7 @@ import { defineConfig } from "vite" import kaioken from "vite-plugin-kaioken" import eslint from "vite-plugin-eslint" +import checker from "vite-plugin-checker" // https://vitejs.dev/config/ export default defineConfig({ @@ -15,6 +16,9 @@ export default defineConfig({ failOnWarning: false, lintOnStart: true, }), + checker({ + typescript: true, + }), ], esbuild: { jsxInject: `import * as kaioken from "kaioken"`,