generated from nhcarrigan/template
feat: initial prototype attempt
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* @copyright NHCarrigan
|
||||
* @license Naomi's Public License
|
||||
* @author Naomi Carrigan
|
||||
*/
|
||||
|
||||
import { defineConfig } from "vitest/config";
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
coverage: {
|
||||
exclude: [
|
||||
"node_modules/**",
|
||||
"prod/**",
|
||||
"test/**",
|
||||
"*.config.*",
|
||||
"src/types/**",
|
||||
"src/utils/logger.ts",
|
||||
"src/index.ts",
|
||||
],
|
||||
include: [ "src/**/*.ts" ],
|
||||
provider: "v8",
|
||||
reporter: [ "text", "html", "lcov" ],
|
||||
},
|
||||
environment: "node",
|
||||
globals: true,
|
||||
include: [ "test/**/*.spec.ts" ],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user