deno.jsonc 617 B

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