| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "imports": {
- "app/": "./src/application/",
- "domain/": "./src/domain/",
- "infra/": "./src/infrastructure/",
- "if/": "./src/interfaces/",
- "deps": "./src/deps.ts",
- "test-deps": "./test/deps.ts",
- "std/": "https://deno.land/std@0.191.0/"
- },
- "tasks": {
- "dev": "deno run --watch --allow-read --allow-env --allow-net ./src/main.ts",
- "test": "deno test --allow-read --allow-env ./test/"
- },
- "lint": {
- "include": [
- "src/"
- ],
- "rules": {
- "tags": [
- "recommended"
- ]
- }
- },
- "fmt": {
- "include": [
- "src/",
- "test/"
- ],
- "useTabs": false,
- "lineWidth": 80,
- "indentWidth": 2,
- "singleQuote": true
- }
- }
|