/** @type {import('@yarnpkg/types')} */ const { defineConfig } = require("@yarnpkg/types"); module.exports = defineConfig({ async constraints({ Yarn }) { for (const dep of Yarn.dependencies({ ident: "vitest" })) { dep.update(`^3.2.4`); } }, });