Add English to Katakana and Romaji conversion support

This commit is contained in:
2025-06-11 22:04:43 +09:00
parent 653425bf34
commit a77a8aa9bd
10 changed files with 378 additions and 11 deletions

View File

@ -27,8 +27,9 @@
"noPropertyAccessFromIndexSignature": true,
// Next.js specific settings
"types": ["react", "bun"]
"types": ["react", "bun"],
"typeRoots": ["./node_modules/@types", "./types"]
},
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "types/**/*.ts"],
"exclude": ["node_modules", ".next", "out", "public", "styles"]
}