Skip to content

Commit 50b3040

Browse files
committed
experiment
1 parent d1723ca commit 50b3040

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/generate-root-declarations.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import { join, dirname } from 'path';
99
const root = join(dirname(fileURLToPath(import.meta.url)), '..', 'lib');
1010

1111
const shims = [
12-
{ target: './mjs/index.d.ts', out: './index.d.ts' },
13-
{ target: './mjs/operations.d.ts', out: './operations.d.ts' },
14-
{ target: './mjs/internal-do-not-use.d.ts', out: './internal-do-not-use.d.ts' },
12+
{ target: './cjs/index.d.ts', out: './index.d.ts' },
13+
{ target: './cjs/operations.d.ts', out: './operations.d.ts' },
14+
{ target: './cjs/internal-do-not-use.d.ts', out: './internal-do-not-use.d.ts' },
1515
];
1616

1717
for (const { out, target } of shims) {

0 commit comments

Comments
 (0)