fix(build): tighten TypeScript build configuration and update tooling dependencies

This commit is contained in:
2026-04-30 12:34:33 +00:00
parent 9d56109d0a
commit 00d68c3e1b
11 changed files with 1655 additions and 4234 deletions
+2 -2
View File
@@ -10,11 +10,11 @@ export class ClickhouseResultSet<T> {
}
public first(): T | null {
return this.rows.length > 0 ? this.rows[0] : null;
return this.rows[0] ?? null;
}
public last(): T | null {
return this.rows.length > 0 ? this.rows[this.rows.length - 1] : null;
return this.rows[this.rows.length - 1] ?? null;
}
public isEmpty(): boolean {