parent
95614b31fb
commit
c06454f0b4
@ -1,14 +0,0 @@ |
||||
/* eslint-disable @typescript-eslint/no-var-requires */ |
||||
// packages/dataset/jest.config.cjs |
||||
const sharedConfig = require("../../jest.config.js"); |
||||
|
||||
module.exports = { |
||||
...sharedConfig, |
||||
rootDir: "./", // Sets context for this package |
||||
collectCoverageFrom: [ |
||||
"src/**/*.ts", |
||||
"!src/**/*.d.ts", |
||||
// "!src/index.ts", // Optional, if index.ts only re-exports |
||||
], |
||||
modulePathIgnorePatterns: ["<rootDir>/dist/"], |
||||
}; |
@ -0,0 +1,9 @@ |
||||
import { defineConfig } from "vitest/config"; |
||||
|
||||
export default defineConfig({ |
||||
test: { |
||||
coverage: { |
||||
provider: "istanbul", |
||||
}, |
||||
}, |
||||
}); |
Loading…
Reference in new issue