Skip to content
Merged
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ mise run dev

`mise run check` runs all checks currently configured in *mise.toml*:

- TypeScript type checking with `tsgo --noEmit`.
- TypeScript type checking with `tsc --noEmit`.
- TypeScript/JavaScript formatting with `oxfmt --check`.
- Markdown formatting with `hongdown --check`.
- *mise.toml* formatting with `mise fmt --check`.
Expand Down
3 changes: 1 addition & 2 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ min_version = "2026.6.10"
"aqua:dahlia/hongdown" = "0.4.3"
"github:nushell/nushell" = "0.114.1"
node = "26"
"npm:@typescript/native-preview" = "7.0.0-dev.20260620.1"
"npm:oxlint" = "1.75.0"
"npm:oxlint-tsgolint" = "7.0.2001"
"npm:pglite-cli" = "0.0.1"
Expand Down Expand Up @@ -44,7 +43,7 @@ depends = ["check:*"]

[tasks."check:types"]
description = "Check TypeScript types"
run = "pnpm --recursive exec tsgo --noEmit"
run = "pnpm --recursive exec tsc --noEmit"

[tasks."check:lint"]
description = "Check linting"
Expand Down
3 changes: 2 additions & 1 deletion packages/drfed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
},
"tsdown": {
"dts": {
"sourcemap": true
"sourcemap": true,
"tsconfig": "../../tsconfig.drfed.json"
},
"sourcemap": true
},
Expand Down
3 changes: 2 additions & 1 deletion packages/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
"src/schema.ts"
],
"dts": {
"sourcemap": true
"sourcemap": true,
"tsconfig": "../../tsconfig.graphql.json"
},
"sourcemap": true
},
Expand Down
3 changes: 2 additions & 1 deletion packages/models/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
"src/schema.ts"
],
"dts": {
"sourcemap": true
"sourcemap": true,
"tsconfig": "../../tsconfig.models.json"
},
"sourcemap": true
},
Expand Down
1 change: 1 addition & 0 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"@types/relay-runtime": "^20.1.1",
"eslint-plugin-solid": "^0.14.5",
"relay-compiler": "^21.0.1",
"typescript": "catalog:",
"vite-plugin-cjs-interop": "^4.0.3",
"vite-plugin-relay-lite": "^0.12.0"
}
Expand Down
Loading