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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ dep-graph.png
# TypeScript
build/
backend/workers
*.tsbuildinfo

#scripts
updateContributors.js
Expand Down
6 changes: 3 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@
"@vitest/coverage-v8": "4.0.15",
"concurrently": "8.2.2",
"openapi3-ts": "2.0.2",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"readline-sync": "1.4.10",
"supertest": "7.1.4",
"testcontainers": "11.11.0",
"tsx": "4.16.2",
"typescript": "5.9.3",
"typescript": "6.0.0-beta",
"vitest": "4.0.15"
},
"engines": {
Expand Down
1 change: 1 addition & 0 deletions backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "@monkeytype/typescript-config/base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"target": "ES6",
"noImplicitAny": false,
"strictFunctionTypes": false,
Expand Down
6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@
"madge": "8.0.0",
"magic-string": "0.30.17",
"normalize.css": "8.0.1",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"postcss": "8.4.31",
"sass": "1.70.0",
"solid-js": "1.9.10",
"subset-font": "2.3.0",
"tailwindcss": "4.1.18",
"tsx": "4.16.2",
"typescript": "5.9.3",
"typescript": "6.0.0-beta",
"unplugin-inject-preload": "3.0.0",
"vite": "7.1.12",
"vite-bundle-visualizer": "1.2.1",
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/ts/input/listeners/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ inputEl.addEventListener("input", async (event) => {
if (!(event instanceof InputEvent)) {
//since the listener is on an input element, this should never trigger
//but its here to narrow the type of "event"
//@ts-expect-error type narrowing
// oxlint-disable-next-line typescript/no-unsafe-call
event.preventDefault();
return;
}
Expand Down
5 changes: 1 addition & 4 deletions frontend/src/ts/utils/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,8 @@ export function areCharactersVisuallyEqual(
}

export function toHex(buffer: ArrayBuffer): string {
// @ts-expect-error modern browsers
if (Uint8Array.prototype.toHex !== undefined) {
// @ts-expect-error modern browsers
// oxlint-disable-next-line no-unsafe-call
return new Uint8Array(buffer).toHex() as string;
return new Uint8Array(buffer).toHex();
}
const hashArray = Array.from(new Uint8Array(buffer));
const hashHex = hashArray
Expand Down
4 changes: 2 additions & 2 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function getPlugins({
typeAware: true,
overlay: isDevelopment,
}),
injectHTML(),
injectHTML() as PluginOption,
tailwindcss(),
solidPlugin(),
];
Expand Down Expand Up @@ -176,7 +176,7 @@ function getPlugins({
to: `"./ts/constants/firebase-config-live"`,
},
},
]),
]) as PluginOption,
injectPreload(),
minifyJson(),
];
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
"knip": "2.19.2",
"lint-staged": "13.2.3",
"only-allow": "1.2.1",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxfmt": "0.32.0",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"prettier": "3.7.1",
"turbo": "2.5.6",
"vitest": "4.0.15"
Expand Down
6 changes: 3 additions & 3 deletions packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"@monkeytype/tsup-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"madge": "8.0.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"tsup": "8.4.0",
"typescript": "5.9.3",
"typescript": "6.0.0-beta",
"vitest": "4.0.15"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/funbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"@monkeytype/tsup-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"madge": "8.0.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"tsup": "8.4.0",
"typescript": "5.9.3",
"typescript": "6.0.0-beta",
"vitest": "4.0.15"
}
}
3 changes: 3 additions & 0 deletions packages/oxlint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"type": "module",
"exports": {
".": "./index.json"
},
"devDependencies": {
"@oxlint/plugins": "1.43.0"
}
}
2 changes: 1 addition & 1 deletion packages/oxlint-config/plugins/monkeytype-rules.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineRule } from "oxlint";
import { defineRule } from "@oxlint/plugins";

const plugin = {
meta: {
Expand Down
4 changes: 2 additions & 2 deletions packages/release/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"devDependencies": {
"nodemon": "3.1.4",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4"
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2"
}
}
6 changes: 3 additions & 3 deletions packages/schemas/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"@monkeytype/tsup-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"madge": "8.0.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"tsup": "8.4.0",
"typescript": "5.9.3",
"typescript": "6.0.0-beta",
"vitest": "4.0.15"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/tsup-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
},
"devDependencies": {
"@monkeytype/typescript-config": "workspace:*",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"typescript": "5.9.3"
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"typescript": "6.0.0-beta"
},
"peerDependencies": {
"tsup": "8.4.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/tsup-config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "Node",
"module": "ES6",
"moduleResolution": "NodeNext",
"module": "NodeNext",
"target": "ES2015",
"lib": ["es2016"]
},
Expand Down
6 changes: 3 additions & 3 deletions packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"@monkeytype/tsup-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"madge": "8.0.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"oxlint": "1.47.0",
"oxlint-tsgolint": "0.12.2",
"tsup": "8.4.0",
"typescript": "5.9.3",
"typescript": "6.0.0-beta",
"vitest": "4.0.15",
"zod": "3.23.8"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/util/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "Node",
"module": "ES6",
"moduleResolution": "NodeNext",
"module": "NodeNext",
"target": "ES2015",
"lib": ["es2016"]
},
Expand Down
Loading
Loading