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 .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["dbaeumer.vscode-eslint", "oxc.oxc-vscode"]
"recommendations": ["dbaeumer.vscode-eslint", "oxc.oxc-vscode", "typescriptteam.native-preview"]
}
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"editor.formatOnSaveMode": "file",
"js/ts.tsdk.promptToUseWorkspaceVersion": true,
"js/ts.tsdk.path": "node_modules/typescript/lib",
"js/ts.experimental.useTsgo": true,
"files.readonlyInclude": {
"**/routeTree.gen.ts": true
},
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```shell
npm install # setup (requires Node.js ≥ 22 for `node --run`)
node --run build # library → lib/
node --run typecheck # tsc --build
node --run typecheck # tsgo --build
node --run eslint # eslint --max-warnings 0
node --run eslint:fix # eslint --fix
node --run format # oxfmt
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"format:check": "oxfmt --check",
"eslint": "eslint --max-warnings 0 --cache --cache-location .cache/eslint --cache-strategy content",
"eslint:fix": "node --run eslint -- --fix",
"typecheck": "tsc --build"
"typecheck": "tsgo --build"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^3.0.0",
Expand All @@ -55,6 +55,7 @@
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260327.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-istanbul": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/EditCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import type {
* The event can be `stopPropagation()`ed halfway through, so they may not always bubble back up to the window,
* so an alternative check must be used. The check must happen after the event can reach the "inside" container,
* and not before it run to completion. `postTask`/`requestAnimationFrame` are the best way we know to achieve this.
* Usually we want click event handlers from parent components to access the latest commited values,
* Usually we want click event handlers from parent components to access the latest committed values,
* so `mousedown` is used instead of `click`.
*
* We must also rely on React's event capturing/bubbling to handle elements rendered in a portal.
Expand Down
Loading