UNPKG

typezero

Version:

Zero-config TypeScript starter for modern Node.js development. ESM, Biome, Vitest. Production-ready in seconds! ⚡

21 lines (19 loc) 394 B
import tsconfigPaths from "vite-tsconfig-paths"; import { defineConfig } from "vitest/config"; export default defineConfig({ plugins: [tsconfigPaths()], test: { globals: true, include: ["src/**/*.test.ts"], coverage: { provider: "v8", reporter: ["text", "json", "html"], thresholds: { lines: 90, functions: 90, branches: 90, statements: 90, }, }, }, });