From e35c1cb6dde3517aadb7f8d999c28d788642b7ba Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Fri, 2 Jan 2026 11:17:16 +0300 Subject: [PATCH] fix: edit typescript config to avoid import errors --- tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 7e63511..cffaf26 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,11 @@ { + "extends": "@tsconfig/svelte/tsconfig.json", "compilerOptions": { "module": "ESNext", "moduleResolution": "bundler", "target": "ESNext", "lib": ["ESNext", "DOM", "DOM.Iterable"], + "types": ["svelte"], /* Strictness & Safety */ "strict": true, @@ -15,6 +17,8 @@ "skipLibCheck": true, "sourceMap": true, "isolatedModules": true, + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, /* Path Aliases */ "baseUrl": ".",