Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- Node
- vscode
- 프리티어
- .env
- reacts3
- 프로그래머스
- 코드정렬
- 리액트코드정렬
- axios
- s3확장자
- 자동완성방지
- useReducer
- interactive_timeout
- 코딩테스트
- 제일 작은 수 제거하기
- express
- 부족한 금액 계산하기
- prettier
- elasticIP
- utf8mb4
- AWS
- dotenv
- max_allowed_packet
- next #middleware
- 리액트
- 커밋 한번에
- 자연수 뒤집어 배열로 만들기
- react
- MySQL
- EC2
Archives
- Today
- Total
Sungtt
[ERROR] eslint // You have used a rule which requires parserServices to be generated 본문
TypeScript
[ERROR] eslint // You have used a rule which requires parserServices to be generated
sungtt 2022. 8. 23. 16:24오류 내용
Error while loading rule '@typescript-eslint/dot-notation': You have used a rule which requires parserServices to be generated. You must therefore provide a value for the "parserOptions.project" property for @typescript-eslint/parser.
Occurred while linting
해결 방법
eslintrc의 parserOptions에
project: './tsconfig.json', 추가
parserOptions: {
project: './tsconfig.json', // 추가
ecmaVersion: 'latest',
sourceType: 'module',
},
'TypeScript' 카테고리의 다른 글
[TypeScript] Object is possibly 'null' (0) | 2022.05.23 |
---|---|
[TypeScript] interface와 Type Alias의 차이 (0) | 2022.05.09 |
[TypeScript] 기본 타입 (0) | 2022.05.08 |
[TypeScript] 타입스크립트란..? (0) | 2022.03.26 |
Comments