Skip to content

Commit

Permalink
Remove --noEmit option from typecheck script
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Jan 8, 2024
1 parent 9827727 commit 680c14b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"format:base": "prettier --ignore-path ../../.gitignore",
"format:check": "yarn format:base -c .",
"format": "yarn format:base -w .",
"typecheck": "tsc --noEmit"
"typecheck": "tsc"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"format:check": "yarn format:base -c .",
"format": "yarn format:base -w .",
"quickstart": "yarn dev",
"typecheck": "tsc --noEmit"
"typecheck": "tsc"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^1.3.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"format": "yarn format:base -w .",
"generate:types": "tsup --dts-only",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"typecheck": "tsc",
"typedoc": "typedoc"
},
"dependencies": {
Expand Down

0 comments on commit 680c14b

Please sign in to comment.