mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 20:27:37 +00:00
19 lines
324 B
JavaScript
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"
|
|
};
|