.prettierrc 195 B

12345678910111213
  1. {
  2. "singleQuote": true,
  3. "semi": false,
  4. "trailingComma": "all",
  5. "overrides": [
  6. {
  7. "files": ["*.ts", "*.mts"],
  8. "options": {
  9. "parser": "typescript"
  10. }
  11. }
  12. ]
  13. }