mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-06-28 06:16:01 +00:00
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
coverage: {
|
|
reporter: ['text', 'lcov'],
|
|
},
|
|
include: ['__tests__/**/*.ts'],
|
|
},
|
|
});
|