Advertisement
Guest User

Visual Studio Code Angular Files Hidden

a guest
Mar 7th, 2019
1,271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.66 KB | None | 0 0
  1. // Workspace settings
  2. {
  3.     // The following will hide the js and map files in the editor
  4.     "files.exclude": {
  5.         ".vscode":true,
  6.         "node_modules/":true,
  7.         "dist/":true,
  8.         "e2e/":true,
  9.         "*.json": true,
  10.         "**/*.md": true,
  11.         ".gitignore": true,
  12.         "**/.gitkeep":true,
  13.         ".editorconfig": true,
  14.         "**/polyfills.ts": true,
  15.         "**/main.ts": true,
  16.         "**/tsconfig.app.json": true,
  17.         "**/tsconfig.spec.json": true,
  18.         "**/tslint.json": true,
  19.         "**/karma.conf.js": true,
  20.         "**/favicon.ico": true,
  21.         "**/browserslist": true,
  22.         "**/test.ts": true
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement