Skip to content

Commit fdd7220

Browse files
format
1 parent baa4fe6 commit fdd7220

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

examples/streaming/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"strict": true,
1919
"noUnusedLocals": true,
2020
"noUnusedParameters": true,
21-
"noFallthroughCasesInSwitch": true,
21+
"noFallthroughCasesInSwitch": true
2222
},
2323
"include": ["src"]
2424
}

examples/streaming/tsconfig.node.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"strict": true,
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
19-
"noFallthroughCasesInSwitch": true,
19+
"noFallthroughCasesInSwitch": true
2020
},
2121
"include": ["vite.config.ts"]
2222
}

examples/streaming/turbo.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
{
2-
"extends": [
3-
"//"
4-
],
2+
"extends": ["//"],
53
"tasks": {
64
"build": {
7-
"outputs": [
8-
"**/dist/**"
9-
]
5+
"outputs": ["**/dist/**"]
106
},
117
"build:internal": {
12-
"dependsOn": [
13-
"^build:internal"
14-
],
15-
"outputs": [
16-
"**/dist/**"
17-
]
8+
"dependsOn": ["^build:internal"],
9+
"outputs": ["**/dist/**"]
1810
},
1911
"dev:client": {
2012
"cache": false,

0 commit comments

Comments
 (0)