We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
thanks for the plugin first of all!
typescript support work nice, except for import/no-unresolved when you only install types (and not the actual package)
import/no-unresolved
e.g. with npm i @types/aws-lambda, the following failes import {Context} from 'aws-lambda' in a typescript file
npm i @types/aws-lambda
import {Context} from 'aws-lambda'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
thanks for the plugin first of all!
typescript support work nice, except for
import/no-unresolved
when you only install types (and not the actual package)e.g. with
npm i @types/aws-lambda
, the following failesimport {Context} from 'aws-lambda'
in a typescript fileThe text was updated successfully, but these errors were encountered: