deno.jsonc 704 B

1234567891011121314151617181920212223242526272829303132333435
  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. "test-deps": "./test/deps.ts",
  9. "std/": "https://deno.land/std@0.191.0/"
  10. },
  11. "tasks": {
  12. "dev": "deno run --watch --allow-read --allow-env --allow-net ./src/main.ts",
  13. "test": "deno test --allow-read --allow-env ./test/"
  14. },
  15. "lint": {
  16. "include": [
  17. "src/"
  18. ],
  19. "rules": {
  20. "tags": [
  21. "recommended"
  22. ]
  23. }
  24. },
  25. "fmt": {
  26. "include": [
  27. "src/",
  28. "test/"
  29. ],
  30. "useTabs": false,
  31. "lineWidth": 80,
  32. "indentWidth": 2,
  33. "singleQuote": true
  34. }
  35. }