vscode-dtdl/jest.config.js

14 строки
261 B
JavaScript
Исходник Обычный вид История

2020-05-07 04:38:30 +03:00
module.exports = {
moduleFileExtensions: ["ts", "js"],
transform: {
"\\.ts$": "ts-jest"
},
globals: {
"ts-jest": {
tsConfig: "tsconfig.json"
}
},
testMatch: ["**/test/**/*.test.ts"],
testPathIgnorePatterns: ["/node_modules/"]
};