settings.json 677 B

12345678910111213141516
  1. // Place your settings in this file to overwrite default and user settings.
  2. {
  3. "files.exclude": {
  4. "out": false, // set this to true to hide the "out" folder with the compiled JS files
  5. "dist": false // set this to true to hide the "dist" folder with the compiled JS files
  6. },
  7. "search.exclude": {
  8. "out": true, // set this to false to include "out" folder in search results
  9. "dist": true // set this to false to include "dist" folder in search results
  10. },
  11. // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
  12. "typescript.tsc.autoDetect": "off",
  13. "cSpell.words": [
  14. "hyperlinker"
  15. ]
  16. }