This commit is contained in:
adueck 2024-11-28 15:34:37 +05:00
parent f022277340
commit adf86d6534
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ export const dictionaryFilename = "dictionary";
export const dictionaryInfoFilename = "dictionary-info"; export const dictionaryInfoFilename = "dictionary-info";
// const hunspellAffFileFilename = "ps_AFF.aff"; // const hunspellAffFileFilename = "ps_AFF.aff";
// const hunspellDicFileFilename = "ps_AFF.dic"; // const hunspellDicFileFilename = "ps_AFF.dic";
const allWordsJsonFilename = "all-words-dictionary.json"; // const allWordsJsonFilename = "all-words-dictionary.json";
const url = `${baseUrl}${dictionaryFilename}`; const url = `${baseUrl}${dictionaryFilename}`;
const infoUrl = `${baseUrl}${dictionaryInfoFilename}`; const infoUrl = `${baseUrl}${dictionaryInfoFilename}`;
@ -16,6 +16,8 @@ export function makeDictionaryObject(
): T.Dictionary { ): T.Dictionary {
return { return {
info: { info: {
// @ts-ignore
testVal: true,
title, title,
license, license,
url, url,