Browse by category
Build & bundler errors
Webpack, Vite, and compile-time “module not found” and resolution issues.
- ESLint parsing errorThe file isn’t valid for the parser—wrong parser, JSX in .ts, or stage-3 syntax without plugin.
- Git merge conflictTwo branches edited the same lines; Git stopped for manual resolution.
- Module not found (webpack / bundler)The bundler could not resolve a file path—case sensitivity, extension, or missing file on disk.
- TypeScript cannot find nameA symbol is used without a declaration or import—typo, missing import, or wrong tsconfig scope.
