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 ad71964 commit 476e2f0Copy full SHA for 476e2f0
apps/webapp/package.json
@@ -13,7 +13,7 @@
13
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
14
"start": "cross-env NODE_ENV=production node --max-old-space-size=8192 ./build/server.js",
15
"start:local": "cross-env node --max-old-space-size=8192 ./build/server.js",
16
- "typecheck": "tsc --noEmit",
+ "typecheck": "tsc -p ./tsconfig.check.json",
17
"db:seed": "node prisma/seed.js",
18
"db:seed:local": "ts-node prisma/seed.ts",
19
"generate:sourcemaps": "remix build --sourcemap",
apps/webapp/tsconfig.check.json
@@ -0,0 +1,10 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "noEmit": true,
5
+ "paths": {
6
+ "~/*": ["./app/*"],
7
+ "@/*": ["./*"]
8
+ }
9
10
+}
0 commit comments