error Parsing error: ESLint was configured to run on `/.eslintrc.js` using `parserOptions.project`: ~ However, that TSConfig does not include this file. Either: - Change ESLint's list of included files to not include this file - Change that TSConfig to include this file - Create a new TSConfig that includes this file and include it in your parserOptions.project See the typescript-eslint docs for..
error
npm run lint 를 실행했는데 아래와 같은 에러가 발생하였습니다. Error [ERR_REQUIRE_ESM]: require() of ES Module Instead rename .eslintrc.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" 1/package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead). 에러가 발생한 이유는 여러가지입니다. 저의 경우 제 프로..
1. ERROR 타입스크립트를 구성하다보면 `No inputs were found in config file` 이러한 에러가 발생할 때가 있습니다. 2. 해결법 1. TS 파일 추가 이 에러의 주된 원인은 `.ts`파일이 하나도 없기 때문에 발생한다. 따라서 아무 `.ts`파일을 만들면 에러가 해결되는 경우가 많다. 위 방법대로 했다면 그 다음에 2번 방법처럼 IDE을 다시 시작하는 것을 추천합니다. 2. IDE 다시시작 때때로 알수없는 원인으로 에러가 발생하는 경우가 있다. 이럴때는 IDE를 다시 시작하면 에러가 사라질 때도 있습니다. `cmd + shift + p`를 누른 다음 `>reload` 만 입력해도 아래처럼 뜬다. `Developer: Reload window`를 누르면 된다. 3. tsco..
next에서 공식문서보고 배우기 시작할 때 무심코 할 수 있는 실수가 있다. 바로 build를 하지 않아서 생기는 에러이다. 에러는 아래와 같이 발생한다. Error: Could not find a production build in the '....' directory. 해결법은 정말 간단하다 yarn next build `yarn next build`를 한 후에 `yarn next start`를 해주면 된다. 즉 파일이 변경된 것 반영시키고 싶으면 항상 `next build`를 해주고 `next start`를 해주면된다. 그럼 우리가 react에서 `npm run dev` or `yarn dev`라는 명령어로 개발자 모드를 한것처럼 당연히 `next.js`를 사용해도 이용할 수 있다. `yarn ne..