deno.jsonc 618 B

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