aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/package.json4
-rw-r--r--apps/web/tsconfig.json3
2 files changed, 4 insertions, 3 deletions
diff --git a/apps/web/package.json b/apps/web/package.json
index b5fb1a50..3721d3b2 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -13,8 +13,8 @@
"lint:fix": "oxlint . --fix",
"test": "vitest",
"typecheck": "tsc --noEmit",
- "format": "prettier --check . --ignore-path ../../.gitignore",
- "format:fix": "prettier --write . --ignore-path ../../.gitignore"
+ "format": "prettier --cache --check . --ignore-path ../../.gitignore",
+ "format:fix": "prettier --cache --write . --ignore-path ../../.gitignore"
},
"dependencies": {
"@auth/drizzle-adapter": "~1.5.0",
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json
index fb5492e4..308aeaad 100644
--- a/apps/web/tsconfig.json
+++ b/apps/web/tsconfig.json
@@ -10,7 +10,8 @@
],
"paths": {
"@/*": ["./*"]
- }
+ },
+ "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", ".next"]