[Typescript] Typescript에서 console.log() 에러 표시나는 경우

미랭군·2023년 8월 21일
0

typescript로 프로젝트 구현 시 console.log()출력시 인식을 못하는 경우가 있다.

error TS2584: Cannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.

이때는 tsconfig.json에 compilerOptions.lib에 dom을 추가해주면 된다.

tsconfig.json

  "compilerOptions": {
    "lib": ["ESNext", "DOM"],
profile
개발자

0개의 댓글