pnpm install
pnpm buildView the contents of the a.js and a.d.ts files in the locale folder.
The a.js file should contain the following code:
//#region src/locale/a.ts
var a_default = { hello: "HelloA" };
//#endregion
export { a_default as default };The a.d.ts file should contain the following code:
//#region src/locale/a.d.ts
declare const _default: {
hello: string;
};
//#endregion
export { _default };