Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"arkor": "workspace:*",
"c8": "^10.1.3",
"create-arkor": "workspace:*",
"typescript": "^5",
"typescript": "^6",
"vitest": "^4.1.5"
}
}
2 changes: 1 addition & 1 deletion e2e/studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"@playwright/test": "^1.50.0",
"@types/node": "^24",
"arkor": "workspace:*",
"typescript": "^5"
"typescript": "^6"
}
}
2 changes: 1 addition & 1 deletion packages/arkor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@types/node": "^24",
"@vitest/coverage-v8": "^4.1.5",
"tsdown": "^0.21.9",
"typescript": "^5",
"typescript": "^6",
"vitest": "^4.1.5"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"devDependencies": {
"@types/node": "^24",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "^5",
"typescript": "^6",
"vitest": "^4.1.5"
}
}
2 changes: 1 addition & 1 deletion packages/create-arkor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@types/node": "^24",
"@vitest/coverage-v8": "^4.1.5",
"tsdown": "^0.21.9",
"typescript": "^5",
"typescript": "^6",
"vitest": "^4.1.5"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/studio-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@vitest/coverage-v8": "^4.1.5",
"jsdom": "29.1.1",
"tailwindcss": "^4.0.0",
"typescript": "^5",
"typescript": "^6",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Add declarations before enabling TS 6

With this upgrade, the Studio app inherits TypeScript 6's new default of noUncheckedSideEffectImports: true. This package still side-effect imports the bare Fontsource packages in src/lib/fonts.ts (@fontsource-variable/geist and @fontsource-variable/geist-mono), which are CSS-only exports without TypeScript declarations for those bare specifiers, so pnpm --filter @arkor/studio-app typecheck and the root arkor build path will fail with unresolved-module errors unless the imports are changed to declared CSS paths, ambient declarations are added, or the option is set explicitly.

Useful? React with 👍 / 👎.

"vite": "^6.0.0",
"vitest": "^4.1.5"
}
Expand Down
151 changes: 76 additions & 75 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading