typescript

This commit is contained in:
Fabrice Lamant
2024-07-29 21:21:52 +02:00
parent 7aa7bdd611
commit 13e1439023
186 changed files with 3033 additions and 696 deletions

14
vitest.config.mjs Normal file
View File

@ -0,0 +1,14 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
exclude: [
"**/dist/**",
"**/test/**",
"**/tailwind.config.js",
],
},
},
});