# @typescript-eslint/parser vs @babel/eslint-parser

| 항목 | @typescript-eslint/parser | @babel/eslint-parser |
| --- | --- | --- |
| TypeScript 문법 | 완벽 지원 | 지원 안함 |
| JavaScript 문법 | 지원 | 지원 |
| 타입 체크 | 가능 | 불가능 |
| Babel 설정 필요 | 불필요 | 필요 |

- JS와 TS를 혼합하는 프로젝트도, 타입스크립트 파서는 일반 JS도 파싱이 가능하기 때문에 `@typescript-eslint/parser` 로 통일하면 더 간단하게 사용할 수 있다.

For the site tree, see the [root Markdown](https://slashpage.com/timmy.md).
