Bladeren bron

fix paths for folder revert

Richard Köhl 2 jaren geleden
bovenliggende
commit
452617af79
1 gewijzigde bestanden met toevoegingen van 15 en 9 verwijderingen
  1. 15 9
      deno.jsonc

+ 15 - 9
deno.jsonc

@@ -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,