This commit is contained in:
kakkokari-gtyih 2025-02-15 12:58:33 +09:00
parent c1cff1361f
commit de27d254f4
2 changed files with 3 additions and 3 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' with { type: 'json' };
import _emojilist from './emojilist.json';
export const emojilist: UnicodeEmojiDef[] = _emojilist.map(x => ({
name: x[1] as string,

View File

@ -2,8 +2,8 @@
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "nodenext",
"moduleResolution": "nodenext",
"module": "ES2022",
"moduleResolution": "bundler",
"declaration": true,
"declarationMap": true,
"sourceMap": false,