Skip to content

Instantly share code, notes, and snippets.

@lek890
Created June 30, 2021 18:43
Show Gist options
  • Save lek890/e01a76dc304d119dc6da6b22ac1c8589 to your computer and use it in GitHub Desktop.
Save lek890/e01a76dc304d119dc6da6b22ac1c8589 to your computer and use it in GitHub Desktop.

Enable auto import for js module in vscode

Add a jsconfig.json with checkJs true

{
    "compilerOptions": {
        "baseUrl": "src",
        "checkJs": true,
        "jsx": "react"
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment