import { createScopedVitestConfig } from "./vitest.scoped-config.ts"; export function createCommandsVitestConfig(env?: Record) { return createScopedVitestConfig(["src/commands/**/*.test.ts"], { dir: "src/commands", env, name: "commands", }); } export default createCommandsVitestConfig();