1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 14:47:28 +00:00
Files
TypeScript-Node-Starter/jest.config.js
Mathias Rasmussen 3e2f6c0c51 Fix lint warnings
2019-07-31 12:34:57 +02:00

19 lines
324 B
JavaScript

module.exports = {
globals: {
"ts-jest": {
tsConfig: "tsconfig.json"
}
},
moduleFileExtensions: [
"ts",
"js"
],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest"
},
testMatch: [
"**/test/**/*.test.(ts|js)"
],
testEnvironment: "node"
};