Skip to content

Instantly share code, notes, and snippets.

@tonytangau
Last active September 3, 2021 02:25
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 tonytangau/e81286f7d38eaf553f7754eb5e560449 to your computer and use it in GitHub Desktop.
Save tonytangau/e81286f7d38eaf553f7754eb5e560449 to your computer and use it in GitHub Desktop.
VS code Workspace setting to hide/collapse typescript generated files
{
"files.exclude": {
"**/*.js": { "when": "$(basename).ts" },
"**/**.js": { "when": "$(basename).tsx" },
"**/*.d.ts": { "when": "$(basename).ts" },
"**/**.map": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment