Resolver for eslint-plugin-import that resolves import aliases defined in jsconfig.json. Version 1.1.0 is current; the package is stable and updated irregularly. It enables ESLint to understand path aliases in jsconfig (common in Create React App projects) without Webpack configuration. Unlike eslint-import-resolver-webpack or eslint-import-resolver-alias, this resolver directly reads jsconfig.json and is lightweight with no heavy dependencies.
npm install eslint-import-resolver-jsconfigVerified import paths — ran on the pinned version, not inferred.
Configures ESLint to resolve aliases from jsconfig.json, enabling import/no-unresolved to understand path aliases.
Use 'jsconfig' as the key in settings.import/resolver.
Ensure jsconfig.json exists and path is correct (default: './jsconfig.json').
Consider alternative resolvers like eslint-import-resolver-typescript or eslint-import-resolver-alias if compatibility issues arise.
Run 'npm install eslint-import-resolver-jsconfig --save-dev'.
Check that jsconfig.json includes 'compilerOptions.paths' with the alias mapping, and that the resolver settings key is 'jsconfig'.