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"],