ESLint (VSCodium) error after using `npm create discord-bot`

Hello, I created a bot using npm create discord-bot and am using the ESLint VSCodium extension. however I am running into an issue in ping.ts, where I am getting an ESLint error:
Parsing error: ESLint was configured to run on `<bot directory>/src/commands/ping.ts` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.eslint.json
However, that TSConfig does not include this file.
Parsing error: ESLint was configured to run on `<bot directory>/src/commands/ping.ts` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.eslint.json
However, that TSConfig does not include this file.
Any help would be appreciated.
2 Replies
d.js toolkit
d.js toolkit3d ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!
annalasko
annalaskoOP3d ago
- What's your exact discord.js npm list discord.js and node node -v version?
<bot name>@0.1.0 <bot directory>
<bot name>@0.1.0 <bot directory>
v23.9.0
v23.9.0
- Post the full error stack trace, not just the top part!
Parsing error: ESLint was configured to run on `<bot directory>/src/commands/ping.ts` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.eslint.json
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 more info: https://typescript-eslint.io/troubleshooting/typed-linting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
Parsing error: ESLint was configured to run on `<bot directory>/src/commands/ping.ts` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.eslint.json
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 more info: https://typescript-eslint.io/troubleshooting/typed-linting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
- Show your code! My code is unchanged from what is found in https://github.com/discordjs/discord.js/blob/main/packages/create-discord-bot/template/TypeScript/src/commands/ping.ts

Did you find this page helpful?