fix type error

This commit is contained in:
おさむのひと 2025-02-15 12:34:57 +09:00
parent 0bc4273166
commit c1cff1361f
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export type UnicodeEmojiDef = {
};
// initial converted from https://github.com/muan/emojilib/commit/242fe68be86ed6536843b83f7e32f376468b38fb
import _emojilist from './emojilist.json';
import _emojilist from './emojilist.json' with { type: 'json' };
export const emojilist: UnicodeEmojiDef[] = _emojilist.map(x => ({
name: x[1] as string,