From 17a48c76cda6adc2b777f3d98b94a3f830959bca Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 27 Feb 2023 11:29:56 +0100 Subject: [PATCH] Added jsdoc annotations for `i18next-parser` config type - this helps with using the correct key/values when working on the config --- ghost/i18n/i18next-parser.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghost/i18n/i18next-parser.config.js b/ghost/i18n/i18next-parser.config.js index e29a496f6c1..3a19f8cbd04 100644 --- a/ghost/i18n/i18next-parser.config.js +++ b/ghost/i18n/i18next-parser.config.js @@ -1,5 +1,8 @@ const {SUPPORTED_LOCALES} = require('./'); +/** + * @type {import('i18next-parser').UserConfig} + */ module.exports = { locales: SUPPORTED_LOCALES,