chore: scaffold carousel package and tooling

This commit is contained in:
Ilia Mashkov
2026-07-01 07:24:35 +03:00
commit f1d6731417
11 changed files with 124 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'jsdom',
include: ['tests/**/*.test.ts'],
coverage: {
provider: 'v8',
include: ['src/**/*.ts'],
thresholds: { lines: 90, branches: 90, functions: 90, statements: 90 },
},
},
});