Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyxiao committed Oct 26, 2023
1 parent 6531efd commit 8aa32d8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/validate-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

# - name: Set up tmate session
# uses: mxschmitt/action-tmate@v2

- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -67,8 +64,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Setup upterm session
uses: lhotari/action-upterm@v1
# - name: Set up tmate session
# uses: mxschmitt/action-tmate@v2

# - name: Setup upterm session
# uses: lhotari/action-upterm@v1

- name: Run type checks
run: pnpm run typecheck
Expand Down
1 change: 1 addition & 0 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"paths": {
"@/*": ["./*"],
// Override because we don't want to use ./dist unnecessarily
"@usevenice/connect": ["../../packages/connect/src/index.ts"],
"@usevenice/connect/*": ["../../packages/connect/src/*"]
}
},
Expand Down
2 changes: 2 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
// from two separate next.js apps in the same monorepo which might be relevant for future
"paths": {
"@/*": ["./apps/web/*"],
// Override because we don't want to use ./dist unnecessarily
"@usevenice/connect": ["./packages/connect/src/index.ts"],
"@usevenice/connect/*": ["./packages/connect/src/*"]
}
},
Expand Down

0 comments on commit 8aa32d8

Please sign in to comment.