Skip to content

Commit

Permalink
Remove baseUrl from tsconfig.base.json
Browse files Browse the repository at this point in the history
  • Loading branch information
aryaemami59 committed Feb 9, 2024
1 parent 3834164 commit e9f3e7a
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions packages/toolkit/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,14 @@
"downlevelIteration": false,
"allowSyntheticDefaultImports": true,
"emitDeclarationOnly": true,
"baseUrl": ".",
"types": ["vitest/globals", "vitest/importMeta"],
"paths": {
"@reduxjs/toolkit": ["src/index.ts"], // @remap-prod-remove-line
"@reduxjs/toolkit/react": ["src/react/index.ts"], // @remap-prod-remove-line
"@reduxjs/toolkit/query": ["src/query/index.ts"], // @remap-prod-remove-line
"@reduxjs/toolkit/query/react": ["src/query/react/index.ts"], // @remap-prod-remove-line
// for type imports in tests only
"@reduxjs/toolkit/dist/*": ["src/*"], // @remap-prod-remove-line
// for type imports in tests only
"@reduxjs/toolkit/dist/query/*": ["src/query/*"], // @remap-prod-remove-line
"@reduxjs/toolkit": ["./src/index.ts"], // @remap-prod-remove-line
"@reduxjs/toolkit/react": ["./src/react/index.ts"], // @remap-prod-remove-line
"@reduxjs/toolkit/query": ["./src/query/index.ts"], // @remap-prod-remove-line
"@reduxjs/toolkit/query/react": ["./src/query/react/index.ts"], // @remap-prod-remove-line
// internal imports in tests only
"@internal/*": ["src/*"],
"react": ["node_modules/react"]
"@internal/*": ["./src/*"]
}
}
}

0 comments on commit e9f3e7a

Please sign in to comment.