You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
423 B
14 lines
423 B
/* 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/"],
|
|
};
|
|
|