전 세계적으로 노출된 타사 모듈 확장 Jest in Typescript에 사용자 지정 일치자를 추가하려고 합니다.이것은 잘 작동하지만 Typescript가 확장된 파일을 인식하도록 할 수 없습니다.Matchers. 내 짝꿍들 export default function myMatcher (this: jest.MatcherUtils, received: any, expected: any): { pass: boolean; message (): string; } { const pass = received === expected; return { pass: pass, message: () => `expected ${pass ? '!' : '='}==`, } } 나의 Matcher.d.ts. declare names..