Skip to content

Instantly share code, notes, and snippets.

@mark05e
Created April 6, 2022 20:49
Show Gist options
  • Save mark05e/ff2407c44e72aa311b8818f74c55a2e1 to your computer and use it in GitHub Desktop.
Save mark05e/ff2407c44e72aa311b8818f74c55a2e1 to your computer and use it in GitHub Desktop.
This file tells VS Code to treat all *.js files in the workspace as part of the same project. However it will not enable intellisense between javascript in <script> blocks and regular js files. https://stackoverflow.com/questions/49184790/how-to-using-vscode-javascripts-go-to-definition-cross-files
{
"compilerOptions": {
"target": "ES6"
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment