@sprive/vitest-config
v1.2.0
Published
Hey, this is where our `vitest` config lives. Make yourself at home!
Downloads
2
Readme
Unk Vitest Config
Hey, this is where our vitest
config lives. Make yourself at home!
Install
npm i -D vitest @sprive/vitest-config @@vitest/coverage-istanbul
Usage:
NOTE: @vitest/coverage-istanbul
is required when using coverage, as this config sets it as the provider.
import { defineConfig } from "vitest/config";
import { spriveVitest } from "@sprive/vitest-config";
export default defineConfig({
...spriveVitest,
// ...overrides,
});
To override a nested property, for example the test
property:
import { defineConfig } from "vitest/config";
import { spriveVitest } from "@sprive/vitest-config";
export default defineConfig({
...spriveVitest,
test: {
...spriveVitest.test,
// ...overrides
},
});