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
- unity
- javascript
- centOS7
- java
- 해석
- 번역
- 개발자
- techEmpower
- kakao
- mariadb
- it
- ubuntu
- 프래그먼트
- 구글
- 안드로이드
- error
- 컴퓨터과학총론
- 자바
- C
- NGINX
- Portfolio
- android
- caddy
- MySQL
- server
- C lanuage
- 개발
- H2O
- php
- 한글
Archives
- Today
- Total
개발모음집
TypeScript eslint : Unable to resolve path to module './app' import/no-unresolved 본문
client
TypeScript eslint : Unable to resolve path to module './app' import/no-unresolved
void 2020. 2. 24. 10:00첫 번째 해결법
.eslintrc 파일에서 rules안에
"import/no-unresolved": "off",
입력하면 됨
결과: .eslintrc 파일
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: [
// Airbnb style guide 적용
"airbnb-base",
// TypeScript ESLint recommanded style 적용
"plugin:@typescript-eslint/eslint-recommended"
],
"rules": {
"indent": ["error", 4],
"import/no-unresolved": "off"
}
};
두 번째 해결법
.eslintrc 파일에서
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
를 입력하면 됨
결과 : .eslintrc파일
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: [
// Airbnb style guide 적용
"airbnb-base",
// TypeScript ESLint recommanded style 적용
"plugin:@typescript-eslint/eslint-recommended"
],
"rules": {
"indent": ["error", 4],
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
};
'client' 카테고리의 다른 글
How to copy text without input tag (0) | 2020.02.26 |
---|---|
TypeScript eslint : error Missing file extension "ts" for "./filename" (0) | 2020.02.25 |
js window, 유사배열, 스코프 (0) | 2020.02.12 |
js call, apply, bind (0) | 2020.02.11 |
js 전개 연산자, ... (0) | 2020.02.05 |