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