Files
DefinitelyTyped-tools/jest.config.js
2020-03-16 11:00:02 -07:00

13 lines
303 B
JavaScript

module.exports = {
preset: "ts-jest",
testEnvironment: "node",
modulePathIgnorePatterns: ["packages\\/publisher\\/output"],
testMatch: ["<rootDir>/packages/*/test/**/*.test.ts"],
globals: {
"ts-jest": {
tsConfig: "<rootDir>/tsconfig.test.json",
diagnostics: false
}
}
};