mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-23 04:12:35 +08:00
16 lines
313 B
TypeScript
16 lines
313 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { configDefaults } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: [
|
|
...configDefaults.exclude,
|
|
"build/**",
|
|
],
|
|
|
|
coverage: {
|
|
reporter: [ "text", "html" ],
|
|
}
|
|
}
|
|
});
|