Skip to content

Commit ce371db

Browse files
committed
use JS for rollup configuration
1 parent 4034840 commit ce371db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/devtools/rollup.config.ts renamed to packages/devtools/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import fs from 'node:fs';
2-
import type { RollupOptions } from 'rollup';
32
import { babel } from '@rollup/plugin-babel';
43
import nodeResolve from '@rollup/plugin-node-resolve';
54

@@ -26,7 +25,8 @@ function injectDemoSource() {
2625
};
2726
}
2827

29-
const config: Array<RollupOptions> = [
28+
/** @type {import('rollup').RollupOptions[]} */
29+
const config = [
3030
{
3131
input: 'src/index.ts',
3232
output: {

0 commit comments

Comments
 (0)