@@ -8,13 +8,13 @@ import {
88 type TaskHandler ,
99 type TaskRegistrationOptions ,
1010 type WorkerOptions ,
11- } from "./absurd" ;
12- import { SQLiteConnection } from "./sqlite-connection" ;
11+ } from "./absurd.js " ;
12+ import { SQLiteConnection } from "./sqlite-connection.js " ;
1313
1414// Re-export Temporal from temporal-polyfill
1515export { Temporal } from "temporal-polyfill" ;
1616
17- export type { Queryable } from "./absurd" ;
17+ export type { Queryable } from "./absurd.js " ;
1818export {
1919 CancelledTask ,
2020 SuspendTask ,
@@ -31,12 +31,12 @@ export {
3131 type TaskHandler ,
3232 type TaskRegistrationOptions ,
3333 type WorkerOptions ,
34- } from "./absurd" ;
34+ } from "./absurd.js " ;
3535export {
3636 downloadExtension ,
3737 resolveExtensionPath ,
3838 type DownloadExtensionOptions ,
39- } from "./extension-downloader" ;
39+ } from "./extension-downloader.js " ;
4040export type {
4141 SQLiteBindParams ,
4242 SQLiteBindValue ,
@@ -45,9 +45,12 @@ export type {
4545 SQLiteRestBindParams ,
4646 SQLiteStatement ,
4747 SQLiteVerboseLog ,
48- } from "./sqlite-types" ;
49- export { SQLiteConnection } from "./sqlite-connection" ;
50- export type { SQLiteConnectionOptions , SQLiteValueCodec } from "./sqlite-connection" ;
48+ } from "./sqlite-types.js" ;
49+ export { SQLiteConnection } from "./sqlite-connection.js" ;
50+ export type {
51+ SQLiteConnectionOptions ,
52+ SQLiteValueCodec ,
53+ } from "./sqlite-connection.js" ;
5154
5255/**
5356 * SQLite-specific Absurd client that loads the extension and owns the database handle.
0 commit comments