From 8484d3262dfb4fedd8b83f65d053bc21e455008d Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Wed, 25 May 2022 18:40:23 +0200 Subject: chore: use node16 moduleResolution where possible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We can't do this in the renderer package, because we need to import MUI files that are not exported (MUI v6 is not ESM yet). Signed-off-by: Kristóf Marussy --- packages/main/src/stores/__tests__/SharedStore.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/main/src/stores/__tests__') diff --git a/packages/main/src/stores/__tests__/SharedStore.test.ts b/packages/main/src/stores/__tests__/SharedStore.test.ts index 0ed63e3..78396da 100644 --- a/packages/main/src/stores/__tests__/SharedStore.test.ts +++ b/packages/main/src/stores/__tests__/SharedStore.test.ts @@ -18,10 +18,10 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import SharedStore from '../SharedStore'; -import type Config from '../config/Config'; -import type ProfileConfig from '../config/ProfileConfig'; -import type ServiceConfig from '../config/ServiceConfig'; +import SharedStore from '../SharedStore.js'; +import type Config from '../config/Config.js'; +import type ProfileConfig from '../config/ProfileConfig.js'; +import type ServiceConfig from '../config/ServiceConfig.js'; const profileProps: ProfileConfig = { name: 'Test profile', -- cgit v1.2.3-70-g09d2