deno.jsonc 744 B

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