Skip to content

Commit dfc3830

Browse files
committed
fix: correct paths in tsconfig.json for module resolution
1 parent e445d2e commit dfc3830

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

tsconfig.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@
1313
"sourceMap": true,
1414
"resolveJsonModule": true,
1515
"types": ["node"],
16-
"baseUrl": "./src",
1716
"paths": {
18-
"@api/*": ["presentation/api/*"],
19-
"@web/*": ["presentation/web/*"],
20-
"@shared/*": ["domain/shared/*"]
17+
"@api/*": ["./src/presentation/api/*"],
18+
"@web/*": ["./src/presentation/web/*"],
19+
"@shared/*": ["./src/domain/shared/*"]
2120
},
2221
"noUncheckedIndexedAccess": true,
2322
"isolatedModules": true

0 commit comments

Comments
 (0)