-
Parsing error: Unexpected token =JavaScript/TypeScript 2020. 11. 4. 10:48728x90
원인
ESLint가 ES6 이상을 파싱할 때 발생하는 에러
해결 방법
1. babel-eslint 패키지를 설치
npm install babel-eslint
2. eslintrc.js 수정
module.exports = { ... parser: "babel-eslint", parserOptions: { jsx: true, ecmaVersion: 2020, }, ... };
728x90'JavaScript > TypeScript' 카테고리의 다른 글
[Typescript] any, unknown, never 차이 (0) 2023.09.20 [Jest] 절대 경로 적용법 (0) 2021.12.18 [Typescript] tsconifg 옵션 (0) 2021.02.07 [TypeScript] Cannot write file '...' because it would overwrite input file. (0) 2020.11.01 [TypeScript] TypeScript란? (0) 2020.07.08