settings.json 1.1 KB

123456789101112131415161718192021222324252627
  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. "deps/vscode/**": true,
  7. "jetbrains/host/deps/**": true
  8. },
  9. "search.exclude": {
  10. "out": true, // set this to false to include "out" folder in search results
  11. "dist": true, // set this to false to include "dist" folder in search results
  12. "deps/vscode/**": true,
  13. "jetbrains/host/deps/**": true
  14. },
  15. "files.watcherExclude": {
  16. "deps/vscode/**": true,
  17. "jetbrains/host/deps/**": true
  18. },
  19. // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
  20. "typescript.tsc.autoDetect": "off",
  21. "i18n-ally.localesPaths": ["webview-ui/src/i18n", "webview-ui/src/__mocks__/i18n", "webview-ui/src/i18n/locales"],
  22. "vitest.disableWorkspaceWarning": true,
  23. "markdown.editor.filePaste.copyIntoWorkspace": "mediaFiles",
  24. "markdown.copyFiles.destination": {
  25. "**/*": "/static/img/${documentBaseName}/${documentBaseName}.${fileName/(.*)\\.(.*)/$2/}"
  26. }
  27. }