vitest.config.mts 520 B

123456789101112
  1. import { defineConfig } from 'vitest/config';
  2. import { getVitestConfig } from './vitest.config.base.mjs';
  3. /**
  4. * This config file is not directly used by packages scripts or CI.
  5. * It's only purpose is to provide IDEs with a default configuration
  6. * so features from Vitest extensions can work out of the box.
  7. *
  8. * Ideally, this will be used in the future once Vitest supports hierarchical subprojects.
  9. * @see https://github.com/vitest-dev/vitest/issues/8226
  10. */
  11. export default defineConfig(getVitestConfig('node'));