-
Notifications
You must be signed in to change notification settings - Fork 2
Adding more features #8
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
Changes from all commits
5c45267
d074f1a
eae08a2
04d459e
3462a96
3abe18c
7b62198
2a79fad
574fbba
c2b1a2f
4dca006
0c15551
6063952
5bd53ce
fc5278f
f087f76
d7aa5b0
a25d5ce
cde53bc
aca8e8d
5f5c40c
2e57e16
0d2856f
5b7d377
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "name": "betterbase", | ||
| "private": true, | ||
| "packageManager": "bun@1.1.38", | ||
| "packageManager": "bun@1.3.9", | ||
| "workspaces": [ | ||
| "apps/*", | ||
| "packages/*" | ||
|
|
@@ -10,7 +10,7 @@ | |
| "build": "turbo run build", | ||
| "dev": "turbo run dev --parallel", | ||
| "lint": "turbo run lint", | ||
| "typecheck": "turbo run typecheck" | ||
| "typecheck": "turbo run typecheck --filter '*'" | ||
|
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.
On Unix/macOS, the shell strips the single quotes and Turbo receives If Windows developer support is a goal, use double-escaped double quotes or the cross-platform 💡 Cross-platform fix- "typecheck": "turbo run typecheck --filter '*'"
+ "typecheck": "turbo run typecheck --filter \"*\""🤖 Prompt for AI Agents |
||
| }, | ||
| "devDependencies": { | ||
| "turbo": "^2.0.0", | ||
|
|
||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: weroperking/Betterbase
Length of output: 207
🏁 Script executed:
Repository: weroperking/Betterbase
Length of output: 840
Add
"jsx"compiler option to the base config.The
"strict": trueoption is properly set intsconfig.base.jsonand correctly inherited. However, since this config already includes.tsxfiles in the glob patterns (lines 12, 14), a"jsx"compiler option must be explicitly defined. Currently, neither the base config nor this file defines it. Add"jsx": "react"(or the appropriate JSX mode for your setup) tobetterbase/tsconfig.base.jsonto properly handle TypeScript's JSX transformation.🤖 Prompt for AI Agents