mirror of
https://github.com/chenasraf/DefinitelyTyped-tools.git
synced 2026-05-18 01:49:03 +00:00
13 lines
303 B
JavaScript
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
|
|
}
|
|
}
|
|
};
|