Skip to content

Commit 63c70d5

Browse files
committed
chore: build test 7
1 parent 4e66dbc commit 63c70d5

3 files changed

Lines changed: 34 additions & 1 deletion

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@
6868
"vitest": "3.2.4"
6969
},
7070
"dependencies": {
71+
"@rollup/plugin-typescript": "12.1.4",
7172
"@edge-runtime/vm": "5.0.0",
7273
"unbuild": "3.6.1",
73-
"unplugin-replace": "^0.6.1"
74+
"unplugin-replace": "0.6.1"
7475
}
7576
}

packages/operators/build.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import typescript from '@rollup/plugin-typescript';
12
import { defineBuildConfig } from 'unbuild';
23
import Replace from 'unplugin-replace/rollup';
34

@@ -11,6 +12,12 @@ export default defineBuildConfig({
1112
clean: true,
1213
hooks: {
1314
'rollup:options'(ctx, options) {
15+
options.plugins.push(
16+
typescript({
17+
tsconfig: '../../tsconfig.json'
18+
})
19+
);
20+
1421
options.plugins.push(
1522
Replace({
1623
values: [

pnpm-lock.yaml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)