Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- Portfolio
- 해석
- NGINX
- C lanuage
- kakao
- caddy
- unity
- error
- techEmpower
- android
- php
- H2O
- 컴퓨터과학총론
- it
- 번역
- mariadb
- 한글
- 개발자
- C
- javascript
- 개발
- 구글
- ubuntu
- 안드로이드
- 프래그먼트
- centOS7
- MySQL
- server
- 자바
Archives
- Today
- Total
개발모음집
TypeScript eslint : error Missing file extension "ts" for "./filename" 본문
client
TypeScript eslint : error Missing file extension "ts" for "./filename"
void 2020. 2. 25. 10:00.eslintrc 파일의 rule에서
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
json: 'never',
},
],
를 입력하면 됨
결과 : .eslintrc파일
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'airbnb-base',
'plugin:@typescript-eslint/eslint-recommended',
],
rules: {
indent: ['error', 4],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
json: 'never',
},
],
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
}
},
};
'client' 카테고리의 다른 글
typescript package.json 파일 최초 설정 (0) | 2020.02.27 |
---|---|
How to copy text without input tag (0) | 2020.02.26 |
TypeScript eslint : Unable to resolve path to module './app' import/no-unresolved (0) | 2020.02.24 |
js window, 유사배열, 스코프 (0) | 2020.02.12 |
js call, apply, bind (0) | 2020.02.11 |