settings.json 588 B

1234567891011121314151617181920212223
  1. {
  2. "typescript.tsdk": "./node_modules/typescript/lib",
  3. "editor.formatOnSave": false,
  4. "editor.codeActionsOnSave": {
  5. "source.fixAll.eslint": "explicit",
  6. "source.fixAll.ts": "explicit"
  7. },
  8. "search.exclude": {
  9. "**/node_modules": true
  10. },
  11. "files.watcherExclude": {
  12. "**/node_modules/**": true
  13. },
  14. "files.associations": {
  15. "**/console-extensions.json": "jsonc"
  16. },
  17. "json.schemas": [
  18. {
  19. "fileMatch": ["**/console-extensions.json"],
  20. "url": "./node_modules/@openshift-console/dynamic-plugin-sdk-webpack/schema/console-extensions.json"
  21. }
  22. ]
  23. }