Skip to content

Commit 81d06c2

Browse files
fix: fix build
Signed-off-by: Henry Gressmann <[email protected]>
1 parent cf0af70 commit 81d06c2

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

bun.lockb

-8 Bytes
Binary file not shown.

configs/tsconfig.base.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,5 @@
2929
},
3030
"exclude": [
3131
"dist/*"
32-
],
33-
"ts-node": {
34-
"transpileOnly": true
35-
}
32+
]
3633
}

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"build": "turbo build",
1313
"lint": "biome check packages",
1414
"format": "biome format packages",
15+
"typecheck": "tsc --noEmit",
1516
"publish-packages": "turbo build && changeset version && changeset publish",
1617
"test": "bun test"
1718
},
@@ -23,9 +24,10 @@
2324
"typescript": "^5.4.5",
2425
"bun-types": "^1.1.13",
2526
"scripts": "workspace:*",
26-
"turbo": "^2.0.3"
27+
"turbo": "^2.0.4"
2728
},
2829
"trustedDependencies": [
2930
"@biomejs/biome"
30-
]
31+
],
32+
"packageManager": "^[email protected]"
3133
}

tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "./configs/tsconfig.base.json",
3+
"compilerOptions": {
4+
"jsx": "react-jsx"
5+
}
6+
}

turbo.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"pipeline": {
3+
"tasks": {
44
"build": {
55
"dependsOn": [
66
"^build"
77
]
88
}
9-
}
9+
},
10+
"ui": "stream"
1011
}

0 commit comments

Comments
 (0)