generated from nhcarrigan/template
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: false,
|
|
environment: "node",
|
|
include: ["src/**/__tests__/**/*.test.ts"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "html"],
|
|
exclude: ["node_modules/", "**/__tests__/**"],
|
|
},
|
|
},
|
|
});
|