settings.json 787 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "typescript.tsdk": "node_modules/typescript/lib",
  3. "prettier.enable": true,
  4. "editor.codeActionsOnSave": {
  5. "source.fixAll.eslint": "explicit"
  6. },
  7. "path-intellisense.mappings": {
  8. "@": "${workspaceRoot}/src",
  9. "compilerOptions": {
  10. "paths": {
  11. "@/*": ["src/*"]
  12. }
  13. }
  14. },
  15. "compilerOptions": {
  16. "paths": {
  17. "@/*": ["src/*"]
  18. }
  19. },
  20. "[vue]": {
  21. "editor.defaultFormatter": "Vue.volar"
  22. },
  23. "i18n-ally.localesPaths": ["src/locales"],
  24. "i18n-ally.keystyle": "nested",
  25. "i18n-ally.sortKeys": true,
  26. "i18n-ally.namespace": false,
  27. "i18n-ally.enabledParsers": ["ts"],
  28. "i18n-ally.sourceLanguage": "en",
  29. "i18n-ally.displayLanguage": "zh-CN",
  30. "i18n-ally.enabledFrameworks": ["vue", "react"],
  31. "god.tsconfig": "./tsconfig.json"
  32. }