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