-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
declare module and import/no-unresolved #197
Comments
nathanhannig
changed the title
declare module and import/no-unresolved`
declare module and import/no-unresolved
Nov 3, 2022
No update on this? |
I have a declare module '$:/core/modules/widgets/widget.js' {
import { Widget } from 'tiddlywiki';
export { Widget as widget };
} And use it like Now I have to use |
linonetwo
added a commit
to tiddly-gittly/super-tag
that referenced
this issue
Feb 18, 2023
Shit, I have encountered this before! Wasting time dealing with this every time. |
Duplicate of #261 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using the module '@types/arcgis-js-api' which uses declare module
https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/arcgis-js-api/v3/index.d.ts
import Portal from "esri/arcgis/Portal";
When using eslint-plugin-import with eslint-import-resolver-typescript I get
error Unable to resolve path to module 'esri/arcgis/Portal' import/no-unresolved
How can I set up to resolve this properly?
The text was updated successfully, but these errors were encountered: