Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1import { configDefaults, defineConfig } from "vitest/config" 2 3export default defineConfig({ 4 test: { 5 exclude: [...configDefaults.exclude, "target/*"], 6 include: ["src/**/*.{spec,test}.ts"], 7 }, 8})