If you happen to run #SolidJs start in combination with #xojs (https://github.com/xojs/xo), you might run into a nice error message along the lines of
Missing "./vite.js" export in "solid-start" package
This means that your editor has changed vite.config.js and added .js (or .ts) to the line
import solid from 'solid-start/vite'
Disable eslint for that line and all is grand!
// eslint-disable-line n/file-extension-in-import
If you happen to run #SolidJs start in combination with #xojs (https://github.com/xojs/xo), you might run into a nice error message along the lines of
Missing "./vite.js" export in "solid-start" package
This means that your editor has changed vite.config.js and added .js (or .ts) to the line
import solid from 'solid-start/vite'
Disable eslint for that line and all is grand!
// eslint-disable-line n/file-extension-in-import