Skip to content

Commit

Permalink
chore: fix path again
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Dec 20, 2024
1 parent 1aa3fd7 commit 78736eb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions apps/client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
// "baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
}
},
"include": ["app", "./vite-env.d.ts"]
}
6 changes: 5 additions & 1 deletion tsconfig.node.json → apps/client/tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
"composite": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node"
"moduleResolution": "node",
// "baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
}
},
"include": ["vite.config.ts"]
}
6 changes: 1 addition & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"module": "ESNext",
"rootDir": "./",
"moduleResolution": "Node",
"paths": {
"~/*": ["./apps/client/app/*"]
},
"resolveJsonModule": true,
"allowJs": false,
"sourceMap": true,
Expand All @@ -21,6 +18,5 @@
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true
},
"include": ["apps/client", "apps/client/vite-env.d.ts"]
}
}

0 comments on commit 78736eb

Please sign in to comment.