You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing in my project ESLint is now throwing this error.
I haven't ever had anything like this with plugins.
How do I troubleshoot? Thanks.
Uncaught exception received.
file:///Users/jeremy/dev/__active/eslint-plugin-awesome-labs/node_modules/eslint-import-resolver-typescript/lib/index.js:6
import { sync as globSync } from 'fast-glob';
^^^^
SyntaxError: Named export'sync' not found. The requested module 'fast-glob' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'fast-glob';
const { sync: globSync } = pkg;
The text was updated successfully, but these errors were encountered:
After installing in my project ESLint is now throwing this error.
I haven't ever had anything like this with plugins.
How do I troubleshoot? Thanks.
The text was updated successfully, but these errors were encountered: