Skip to content

Commit e9f3e7a

Browse files
committed
Remove baseUrl from tsconfig.base.json
1 parent 3834164 commit e9f3e7a

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

packages/toolkit/tsconfig.base.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,14 @@
3131
"downlevelIteration": false,
3232
"allowSyntheticDefaultImports": true,
3333
"emitDeclarationOnly": true,
34-
"baseUrl": ".",
3534
"types": ["vitest/globals", "vitest/importMeta"],
3635
"paths": {
37-
"@reduxjs/toolkit": ["src/index.ts"], // @remap-prod-remove-line
38-
"@reduxjs/toolkit/react": ["src/react/index.ts"], // @remap-prod-remove-line
39-
"@reduxjs/toolkit/query": ["src/query/index.ts"], // @remap-prod-remove-line
40-
"@reduxjs/toolkit/query/react": ["src/query/react/index.ts"], // @remap-prod-remove-line
41-
// for type imports in tests only
42-
"@reduxjs/toolkit/dist/*": ["src/*"], // @remap-prod-remove-line
43-
// for type imports in tests only
44-
"@reduxjs/toolkit/dist/query/*": ["src/query/*"], // @remap-prod-remove-line
36+
"@reduxjs/toolkit": ["./src/index.ts"], // @remap-prod-remove-line
37+
"@reduxjs/toolkit/react": ["./src/react/index.ts"], // @remap-prod-remove-line
38+
"@reduxjs/toolkit/query": ["./src/query/index.ts"], // @remap-prod-remove-line
39+
"@reduxjs/toolkit/query/react": ["./src/query/react/index.ts"], // @remap-prod-remove-line
4540
// internal imports in tests only
46-
"@internal/*": ["src/*"],
47-
"react": ["node_modules/react"]
41+
"@internal/*": ["./src/*"]
4842
}
4943
}
5044
}

0 commit comments

Comments
 (0)