| 1234567891011121314151617181920212223242526272829 |
- {
- "imports": {
- "application/": "./src/application/",
- "domain/": "./src/domain/",
- "infrastructure/": "./src/infra/",
- "dotenv/": "https://deno.land/std@0.191.0/dotenv/",
- "testing/": "https://deno.land/std@0.191.0/testing/"
- },
- "tasks": {
- "dev": "/home/koehlric/.deno/bin/deno run --allow-read --allow-env ./src/main.ts",
- "test": "/home/koehlric/.deno/bin/deno test --allow-read --allow-run ./test/test.ts"
- },
- "lint": {
- "files": {
- "include": ["src/"]
- },
- "rules": {
- "tags": ["recommended"]
- }
- },
- "fmt": {
- "include": ["src/", "test/"],
- "useTabs": false,
- "lineWidth": 80,
- "indentWidth": 2,
- "singleQuote": true
- }
- }
|