[Bug] Fix typecheck bug (#6415)

Add `public/service-worker.js` to `ts`'s exclude
This commit is contained in:
Sirz Benjie 2025-08-25 18:25:53 -05:00 committed by GitHub
parent 1b6a52e520
commit 622ee5ce80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,5 +59,12 @@
"outDir": "./build", "outDir": "./build",
"noEmit": true "noEmit": true
}, },
"exclude": ["node_modules", "dist", "vite.config.ts", "vitest.config.ts", "vitest.workspace.ts"] "exclude": [
"node_modules",
"dist",
"vite.config.ts",
"vitest.config.ts",
"vitest.workspace.ts",
"public/service-worker.js"
]
} }