-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: typescript project references #5518
Changes from all commits
0fce2b9
9c1ef89
ee0fce9
fdf3f74
0b7d785
c9a5dfb
1cb08b9
1b69fb9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ server/dist | |
public/dist | ||
.turbo | ||
test-results | ||
*.tsbuildinfo | ||
examples/*/build |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,11 +42,12 @@ | |
"scripts": { | ||
"test:e2e:all": "vitest run src/e2e/*.test.ts", | ||
"test:file": "vitest run", | ||
"type-check": "tsc --noEmit" | ||
"type-check": "tsc --build" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. where will the js files go? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i've added a with this change you'll have to run build after type-check |
||
}, | ||
"devDependencies": { | ||
"@types/node": "20.17.24", | ||
"tsx": "4.19.2", | ||
"typescript": "5.8.3" | ||
"typescript": "5.8.3", | ||
"@vercel/ai-tsconfig": "workspace:*" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
full does it with examples, normal tsconfig does without so it's faster