From 51de108d434ce29ee502d7a42280c07063544226 Mon Sep 17 00:00:00 2001 From: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> Date: Mon, 25 Nov 2024 19:10:12 +0100 Subject: [PATCH] chore(web): restore type checks and IDE autocomplete for `$t('...')` (#14343) --- web/src/app.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app.d.ts b/web/src/app.d.ts index ccec3f33d6e..d0d25443c93 100644 --- a/web/src/app.d.ts +++ b/web/src/app.d.ts @@ -28,7 +28,7 @@ interface Element { requestFullscreen?(options?: FullscreenOptions): Promise; } -import type en from '$lib/en.json'; +import type en from '$i18n/en.json'; import 'svelte-i18n'; type NestedKeys = K extends keyof T & string