mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-08-31 15:42:51 +08:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
include: ["src/**/*.{ts,tsx,js,jsx}"],
|
|
provider: "v8",
|
|
},
|
|
environment: "node",
|
|
globals: true,
|
|
},
|
|
});
|