른록노트
[Javascript] Jest에 Typescript 적용하기 본문
1. 설치
npm install --save-dev ts-jest supertest @types/jest jest typescript
2. package.json 수정
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
참고사이트
반응형
Comments