* feat: best practices * feat: add tests workflow * feat: add best-practices workflow * fix: wrong indentation in workflow
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
provider: 'v8',
|
|
},
|
|
},
|
|
});
|