Skip to content

Commit 4c5bce7

Browse files
Fix missing extends option on tsconfig (#68)
* Fix missing `extends` option on tsconfig * add -b to typecheck command --------- Co-authored-by: Brooks Lybrand <[email protected]>
1 parent 2ac5c0d commit 4c5bce7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

node-custom-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"build": "react-router build",
66
"dev": "cross-env NODE_ENV=development node server.js",
77
"start": "node server.js",
8-
"typecheck": "react-router typegen && tsc"
8+
"typecheck": "react-router typegen && tsc -b"
99
},
1010
"dependencies": {
1111
"@react-router/express": "*",

node-custom-server/tsconfig.vite.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"extends": "./tsconfig.json",
23
"include": [
34
".react-router/types/**/*",
45
"app/**/*",

0 commit comments

Comments
 (0)