窄多之Blog

窄多之Blog

Ts-Jest 遇到的问题

- by Admin - 标签: JestTs

使用 ts-jest 遇到的种种问题,及其解决办法。


  1. 神奇的 transformIgnorePatterns bug
    • "<rootDir>/node_modules/(?!aaa|bbb)" 有效,写成两行就无效
  2. 在 jest.config 中定制 compilerOptions
transform: { "^.+\\.(ts|tsx)$": [ "<rootDir>/node_modules/ts-jest", { tsconfig: { noUnusedLocals: false, noUnusedParameters: false, }, }, ],