Skip to content

Commit 30b2277

Browse files
committed
Fixed webapp typechecks
1 parent fb73cdd commit 30b2277

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

apps/webapp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
1515
"start": "cross-env NODE_ENV=production node --max-old-space-size=8192 ./build/server.js",
1616
"start:local": "cross-env node --max-old-space-size=8192 ./build/server.js",
17-
"typecheck": "tsc -p ./tsconfig.check.json",
17+
"typecheck": "tsc --noEmit -p ./tsconfig.check.json",
1818
"db:seed": "node prisma/seed.js",
1919
"db:seed:local": "ts-node prisma/seed.ts",
2020
"build:db:populate": "esbuild --platform=node --bundle --minify --format=cjs ./prisma/populate.ts --outdir=prisma",
@@ -259,4 +259,4 @@
259259
"engines": {
260260
"node": ">=16.0.0"
261261
}
262-
}
262+
}

apps/webapp/tsconfig.check.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"paths": {
66
"~/*": ["./app/*"],
77
"@/*": ["./*"]
8-
}
8+
},
9+
"customConditions": []
910
}
1011
}

0 commit comments

Comments
 (0)