deno.jsonc 651 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "imports": {
  3. "app/": "./src/application/",
  4. "domain/": "./src/domain/",
  5. "infra/": "./src/infrastructure/",
  6. "if/": "./src/interfaces/",
  7. "deps": "./src/deps.ts",
  8. "std/": "https://deno.land/std@0.191.0/"
  9. },
  10. "tasks": {
  11. "dev": "deno run --watch --allow-read --allow-env --allow-net ./src/main.ts",
  12. "test": "deno test ./test/test.ts"
  13. },
  14. "lint": {
  15. "include": [
  16. "src/"
  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. }