Created
April 1, 2021 10:12
-
-
Save mcalavera81/8341b16b18f24096c5c2e6fa2e23e2b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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