jest.js 388 B

12345678910111213141516171819
  1. module.exports = {
  2. verbose: true,
  3. "globals": {
  4. "ts-jest": {
  5. "tsConfigFile": "tsconfig.json"
  6. }
  7. },
  8. "transform": {
  9. "^.+\\.tsx?$": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
  10. },
  11. "moduleDirectories": ["node_modules"],
  12. "testRegex": "(\\.|/)(test)\\.ts$",
  13. "testEnvironment": "node",
  14. "moduleFileExtensions": [
  15. "ts",
  16. "js",
  17. "json"
  18. ],
  19. };