| 12345678910111213141516171819202122232425262728 |
- {
- "imports": {
- "app/": "./src/application/",
- "domain/": "./src/domain/",
- "infra/": "./src/infrastructure/",
- "if/": "./src/interfaces/",
- "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 ./test/test.ts"
- },
- "lint": {
- "files": {
- "include": ["src/"]
- },
- "rules": {
- "tags": ["recommended"]
- }
- },
- "fmt": {
- "include": ["src/", "test/"],
- "useTabs": false,
- "lineWidth": 80,
- "indentWidth": 2,
- "singleQuote": true
- }
- }
|