Skip to content

Commit

Permalink
feat: add baseUrl to make sure paths work well
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipPyrek committed Feb 27, 2024
1 parent 31bf19a commit 56594bd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
5 changes: 4 additions & 1 deletion packages/timestamp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "../../tsconfig.base.json"
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "."
}
}
5 changes: 4 additions & 1 deletion services/add-todo/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "../../tsconfig.base.json"
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "."
}
}
1 change: 1 addition & 0 deletions services/frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
Expand Down
5 changes: 4 additions & 1 deletion services/trpc-api/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "../../tsconfig.base.json"
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "."
}
}
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": "./tsconfig.base.json",
"exclude": ["services", "packages"]
"exclude": ["services", "packages"],
"compilerOptions": {
"baseUrl": "."
}
}

0 comments on commit 56594bd

Please sign in to comment.