Ts-Jest 遇到的问题
使用 ts-jest 遇到的种种问题,及其解决办法。
- 神奇的 transformIgnorePatterns bug
- "<rootDir>/node_modules/(?!aaa|bbb)" 有效,写成两行就无效
- 在 jest.config 中定制 compilerOptions
transform: { "^.+\\.(ts|tsx)$": [ "<rootDir>/node_modules/ts-jest", { tsconfig: { noUnusedLocals: false, noUnusedParameters: false, }, }, ],