Skip to content

Commit 85dc93b

Browse files
committed
chore: drop deprecated baseUrl from server tsconfig
paths now resolves "@/*" relative to tsconfig dir as "./src/*". moduleResolution: "node" stays (still needs ignoreDeprecations: "6.0") — migrating to node16/nodenext requires adding .js extensions throughout the server codebase, deferred until TS7 lands.
1 parent ff9c141 commit 85dc93b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
"moduleResolution": "node",
77
"outDir": "dist",
88
"rootDir": "src",
9-
"baseUrl": "src",
109
"paths": {
11-
"@/*": ["./*"]
10+
"@/*": ["./src/*"]
1211
},
1312
"strict": true,
1413
"noUnusedLocals": true,

0 commit comments

Comments
 (0)