fix: d.ts生成時にexport defaultを生成するように

This commit is contained in:
anatawa12 2023-07-14 19:33:14 +09:00
parent 96242e97ab
commit 6ae47bfeb8
No known key found for this signature in database
GPG Key ID: 9CA909848B8E4EA6
2 changed files with 2 additions and 6 deletions

View File

@ -51,11 +51,7 @@ export default function generateDTS() {
ts.NodeFlags.Const | ts.NodeFlags.Ambient | ts.NodeFlags.ContextFlags,
),
),
ts.factory.createExportAssignment(
undefined,
true,
ts.factory.createIdentifier('locales'),
),
ts.factory.createExportDefault(ts.factory.createIdentifier('locales')),
];
const printed = ts.createPrinter({
newLine: ts.NewLineKind.LineFeed,

2
locales/index.d.ts vendored
View File

@ -2159,4 +2159,4 @@ export interface Locale {
declare const locales: {
[lang: string]: Locale;
};
export = locales;
export default locales;