* feat(i18n): new package for locales We are renaming from zh-CN to zh-Hans with the naming regulation of BCP 47 language tags. For future languages, suggesting to check & lookup on - [Language subtag lookup app](https://r12a.github.io/app-subtags/) - [iana.org/assignments/language-subtag-registry/language-subtag-registry](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry) to search on. Additionally, use `en` for English is actually enforced instead of having `en-Latin`. More resources and citations worth to check on: - https://developer.mozilla.org/en-US/docs/Glossary/BCP_47_language_tag - https://en.wikipedia.org/wiki/IETF_language_tag - https://en.wikipedia.org/wiki/ISO_15924
22 lines
400 B
JSON
22 lines
400 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"types": [
|
|
"unplugin-yaml/types"
|
|
],
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|