Skip to content

Instantly share code, notes, and snippets.

@mcalavera81
Created April 1, 2021 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcalavera81/8341b16b18f24096c5c2e6fa2e23e2b7 to your computer and use it in GitHub Desktop.
Save mcalavera81/8341b16b18f24096c5c2e6fa2e23e2b7 to your computer and use it in GitHub Desktop.
{
"files.exclude": {
// Hide the node_modules folder
"node_modules/": true,
// Hide all files that end in .d.ts
"**/*.d.ts": true,
// Hide all files that end with .js if they have a .ts file
"**/*.js": {
"when": "$(basename).ts"
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment