| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "imports": {
- "application/": "./src/application/",
- "domain/": "./src/domain/",
- "infrastructure/": "./src/infra/",
- "std/": "https://deno.land/std@0.191.0/"
- },
- "tasks": {
- "dev": "deno run --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
- }
- }
|