From cd7833ce2400c9bb9e4b49c51c326783bfb03b75 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Fri, 31 Dec 2021 02:39:24 +0100 Subject: chore: Add import extensions preparing for ts 4.6 nodenext --- packages/shared/src/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'packages/shared/src/index.ts') diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts index 2f7146c..f0ae5dc 100644 --- a/packages/shared/src/index.ts +++ b/packages/shared/src/index.ts @@ -23,26 +23,26 @@ export type { SophieRenderer } from './contextBridge/SophieRenderer'; export { MainToRendererIpcMessage, RendererToMainIpcMessage, -} from './ipc'; +} from './ipc.js'; export type { Action, BrowserViewBounds, ThemeSource, -} from './schemas'; +} from './schemas.js'; export { action, browserViewBounds, themeSource, -} from './schemas'; +} from './schemas.js'; -export type { Config, ConfigSnapshotIn, ConfigSnapshotOut } from './stores/Config'; -export { config } from './stores/Config'; +export type { Config, ConfigSnapshotIn, ConfigSnapshotOut } from './stores/Config.js'; +export { config } from './stores/Config.js'; export type { SharedStore, SharedStoreListener, SharedStoreSnapshotIn, SharedStoreSnapshotOut, -} from './stores/SharedStore'; -export { sharedStore } from './stores/SharedStore'; +} from './stores/SharedStore.js'; +export { sharedStore } from './stores/SharedStore.js'; -- cgit v1.2.3-54-g00ecf