Skip to content

Commit 0a4228e

Browse files
committed
Fix redux overwriting compiler options paths
1 parent 00e4d01 commit 0a4228e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

tsconfig.custom.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./*"],
5+
"$/*": [
6+
"./src/*"
7+
],
8+
}
9+
}
10+
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@
3030
],
3131
"exclude": [
3232
"node_modules/@nivo/line/index.d.ts"
33-
]
33+
],
34+
"extends": "./tsconfig.custom.json"
3435
}

0 commit comments

Comments
 (0)