vscode-dtdl/jest.config.js

14 строки
261 B
JavaScript

module.exports = {
moduleFileExtensions: ["ts", "js"],
transform: {
"\\.ts$": "ts-jest"
},
globals: {
"ts-jest": {
tsConfig: "tsconfig.json"
}
},
testMatch: ["**/test/**/*.test.ts"],
testPathIgnorePatterns: ["/node_modules/"]
};