Skip to content

Instantly share code, notes, and snippets.

@dkgrieshammer
Created July 10, 2020 10:25
Show Gist options
  • Save dkgrieshammer/fdb18518014aa0e683d5855e278ddba5 to your computer and use it in GitHub Desktop.
Save dkgrieshammer/fdb18518014aa0e683d5855e278ddba5 to your computer and use it in GitHub Desktop.
jsconfig.json to intellij absolute paths for vscode
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
//Assuming your components/utilities live in ./src
//Update this path as necessary
"@Components/*": ["./src/Components/*"]
}
},
"include": ["src/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment