Skip to content

Commit eedd9b9

Browse files
committed
fix(ts): resolve clean workspace typecheck paths
1 parent 20a871e commit eedd9b9

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

packages/web/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"compilerOptions": {
4-
"rootDir": "."
5-
},
63
"include": [
74
"src",
85
"vite.config.ts"

tsconfig.base.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"compilerOptions": {
3+
"baseUrl": ".",
34
"target": "ES2022",
45
"module": "ESNext",
56
"moduleResolution": "Bundler",
7+
"paths": {
8+
"@csvshape/core": [
9+
"packages/core/src/index.ts"
10+
]
11+
},
612
"allowSyntheticDefaultImports": true,
713
"esModuleInterop": true,
814
"strict": true,

0 commit comments

Comments
 (0)