React Typescript template's ESLint configuration doesn't correctly ignore dist
directory
#17883
Closed
7 tasks done
Labels
contribution welcome
feat: create-vite
create-vite package
p2-nice-to-have
Not breaking anything but nice to have (priority)
Describe the bug
The ESLint configuration in the React Typescript template has a
ignores: ['dist']
line in it, but ESLint still scans and lints files in thedist
directory.The problem is not immediately visible since the only included files are
.ts
and.tsx
files and you usually don't have those types of files in yourdist
output, but if you add.js
/.jsx
files to the files to the ESLint configuration the linting fails when after you have built the app.This is also a pretty big issue for projects with big dependencies since even without adding
.js
/.jsx
files to the configuration, ESLint still scans those files in some way which slows down the linting process a ton and can even make Node.js run out of memory.Reproduction
https://stackblitz.com/edit/vitejs-vite-lcggzf
Steps to reproduce
npm run lint
works at first.npm run build
npm run lint
fails with 1224 errors in thedist/index-f40OySzR.js
file.System Info
Used Package Manager
npm
Logs
No response
Validations
The text was updated successfully, but these errors were encountered: