deno.jsonc 628 B

1234567891011121314151617181920212223242526272829
  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. "files": {
  16. "include": ["src/"]
  17. },
  18. "rules": {
  19. "tags": ["recommended"]
  20. }
  21. },
  22. "fmt": {
  23. "include": ["src/", "test/"],
  24. "useTabs": false,
  25. "lineWidth": 80,
  26. "indentWidth": 2,
  27. "singleQuote": true
  28. }
  29. }