We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c43e1f commit da349a6Copy full SHA for da349a6
apps/demo/package.json
@@ -6,7 +6,8 @@
6
"scripts": {
7
"dev": "vite",
8
"build": "tsc && vite build",
9
- "preview": "vite preview"
+ "preview": "vite preview",
10
+ "typecheck": "tsc --noEmit"
11
},
12
"dependencies": {
13
"@heroicons/react": "^2.2.0",
package.json
@@ -13,6 +13,7 @@
"build": "turbo run build",
14
"lint": "turbo run lint",
15
"test": "turbo run test",
16
+ "typecheck": "turbo run typecheck",
17
"format": "prettier --write ."
18
19
"prettier": {
turbo.json
@@ -8,6 +8,11 @@
"outputs": ["dist/**", "build/**"]
"lint": {},
- "test": {}
+ "test": {},
+ "typecheck": {
+ "dependsOn": [
+ "^build"
+ ]
+ }
}
0 commit comments