deno.jsonc 699 B

1234567891011121314151617181920212223242526272829
  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. "include": ["src/", "test/"],
  23. "useTabs": false,
  24. "lineWidth": 80,
  25. "indentWidth": 2,
  26. "singleQuote": true
  27. }
  28. }