fix: @types/uuid 패키지 추가
문제: - uuid 모듈의 타입 정의 파일 없음 - TypeScript 컴파일 에러 발생 해결: - npm install --save-dev @types/uuid - @types/uuid@10.0.0 설치 결과: - ✅ TypeScript 컴파일 에러 해결 - ✅ uuid 모듈 타입 안전성 확보
This commit is contained in:
parent
a93fb0f684
commit
808a0244d5
|
|
@ -47,6 +47,7 @@
|
|||
"@types/pg": "^8.15.5",
|
||||
"@types/sanitize-html": "^2.9.5",
|
||||
"@types/supertest": "^6.0.3",
|
||||
"@types/uuid": "^10.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
||||
"@typescript-eslint/parser": "^6.14.0",
|
||||
"eslint": "^8.55.0",
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@
|
|||
"@types/pg": "^8.15.5",
|
||||
"@types/sanitize-html": "^2.9.5",
|
||||
"@types/supertest": "^6.0.3",
|
||||
"@types/uuid": "^10.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
||||
"@typescript-eslint/parser": "^6.14.0",
|
||||
"eslint": "^8.55.0",
|
||||
|
|
|
|||
Loading…
Reference in New Issue