deno.jsonc 599 B

12345678910111213141516171819202122232425262728
  1. {
  2. "imports": {
  3. "app/": "./src/application/",
  4. "domain/": "./src/domain/",
  5. "infra/": "./src/infrastructure/",
  6. "if/": "./src/interfaces/",
  7. "std/": "https://deno.land/std@0.191.0/"
  8. },
  9. "tasks": {
  10. "dev": "deno run --watch --allow-read --allow-env --allow-net ./src/main.ts",
  11. "test": "deno test ./test/test.ts"
  12. },
  13. "lint": {
  14. "files": {
  15. "include": ["src/"]
  16. },
  17. "rules": {
  18. "tags": ["recommended"]
  19. }
  20. },
  21. "fmt": {
  22. "include": ["src/", "test/"],
  23. "useTabs": false,
  24. "lineWidth": 80,
  25. "indentWidth": 2,
  26. "singleQuote": true
  27. }
  28. }