Skip to content

Commit 9f46d0a

Browse files
authored
Fix tsbuildinfo issue (#355)
1 parent 728a009 commit 9f46d0a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperparam",
3-
"version": "0.3.30",
3+
"version": "0.3.31",
44
"description": "Hyperparam CLI",
55
"author": "Hyperparam",
66
"homepage": "https://hyperparam.app",
@@ -31,7 +31,7 @@
3131
"!**/*.test.d.ts"
3232
],
3333
"scripts": {
34-
"build:types": "tsc -b tsconfig.build.json",
34+
"build:types": "tsc -p tsconfig.build.json",
3535
"build:lib": "vite build -c vite.lib.config.ts && cp src/assets/global.css lib/global.css",
3636
"build:app": "vite build",
3737
"build": "run-s build:lib build:types build:app",

tsconfig.build.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
"rootDir": "src",
66
"outDir": "lib",
77
"emitDeclarationOnly": true,
8-
"declaration": true,
9-
"composite": true,
10-
"incremental": true
8+
"declaration": true
119
},
1210
"include": ["src"]
1311
}

0 commit comments

Comments
 (0)