From d38e4a6aa8b9d742cb2def4c967ff0d6b1cd9052 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 13 Dec 2020 12:29:30 +0800 Subject: [PATCH] types: fix translate typing --- docs/site/use-translate.ts | 2 +- src/utils/create/translate.ts | 2 +- tsconfig.json | 16 ++++++---------- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/docs/site/use-translate.ts b/docs/site/use-translate.ts index 56c4dfbf3..032e1dee2 100644 --- a/docs/site/use-translate.ts +++ b/docs/site/use-translate.ts @@ -8,7 +8,7 @@ export function useTranslate(i18n: Record) { const demoName = `demo-i18n-${demoUid++}`; if (i18n) { - const locales = {}; + const locales: Record = {}; const camelizedName = camelize(demoName); Object.keys(i18n).forEach((key) => { diff --git a/src/utils/create/translate.ts b/src/utils/create/translate.ts index cd9c6d06a..0c70d1c35 100644 --- a/src/utils/create/translate.ts +++ b/src/utils/create/translate.ts @@ -5,7 +5,7 @@ import locale from '../../locale'; export function createTranslate(name: string) { const prefix = camelize(name) + '.'; - return function (path: string, ...args: any[]): string { + return function (path: string, ...args: any[]): any { const messages = locale.messages(); const message = get(messages, prefix + path) || get(messages, path); diff --git a/tsconfig.json b/tsconfig.json index 5d7e935f2..881d5b5f2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,15 +9,11 @@ "noEmit": true, "noImplicitThis": true, "esModuleInterop": true, - "moduleResolution": "node" + "moduleResolution": "node", + "paths": { + "@demo/*": ["docs/site/*"] + } }, - "include": [ - "types/**/*", - "src/**/*" - ], - "exclude": [ - "**/*.spec.ts", - "**/*.spec.js", - "node_modules" - ] + "include": ["types/**/*", "docs/**/*", "src/**/*"], + "exclude": ["**/*.spec.ts", "**/*.spec.js", "node_modules"] }