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