mirror of
https://github.com/maputnik/editor.git
synced 2026-07-12 17:07:28 +00:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["src/**/*.test.{ts,tsx}"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["json", "lcov", "text-summary"],
|
|
},
|
|
},
|
|
});
|