-
[Jest] 절대 경로 적용법JavaScript/TypeScript 2021. 12. 18. 13:50728x90
jest에서는 tsconfig에서 지정한 절대경로를 읽지 못함
package.json에
moduleNameMapper
추가"jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "moduleNameMapper": { "^@/(.*)$": "<rootDir>/$1" }, "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "../coverage", "testEnvironment": "node" }
728x90'JavaScript > TypeScript' 카테고리의 다른 글
[Typescript] any, unknown, never 차이 (0) 2023.09.20 [Typescript] tsconifg 옵션 (0) 2021.02.07 Parsing error: Unexpected token = (0) 2020.11.04 [TypeScript] Cannot write file '...' because it would overwrite input file. (0) 2020.11.01 [TypeScript] TypeScript란? (0) 2020.07.08