@intor/reader-json5
v0.1.0
Published
JSON5 reader for intor.
Readme
JSON5 reader for intor.
Installation
# npm
npm install @intor/reader-json5
# yarn
yarn add @intor/reader-json5
# pnpm
pnpm add @intor/reader-json5Example
Setup
import { json5Reader } from "@intor/reader-json5";
const { t } = await getTranslator(intorConfig, {
locale,
readers: { json5: json5Reader },
});Message file
messages/en/example.json5
{
// This is a comment
text: "Coding is fun",
}Usage
t("example.text");
// → "Coding is fun"