From a5f8581086bc3c8ef82b553858ed11c7b34c4d79 Mon Sep 17 00:00:00 2001 From: Soybean Date: Wed, 13 May 2026 14:50:44 +0800 Subject: [PATCH] fix(i18n-ally): add missing TypeScript compiler options. fixed #907 --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index acf59cad..6de4f13b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,7 +13,10 @@ "i18n-ally.keystyle": "nested", "i18n-ally.localesPaths": ["src/locales/langs"], "i18n-ally.parsers.typescript.compilerOptions": { - "moduleResolution": "node" + "moduleResolution": "node", + "ignoreDeprecations": "6.0", + "rootDir": ".", + "baseUrl": "." }, "oxc.fmt.configPath": ".oxfmtrc.json", "unocss.root": ["./"]