aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing
diff options
context:
space:
mode:
Diffstat (limited to 'apps/landing')
-rw-r--r--apps/landing/package.json4
-rw-r--r--apps/landing/tsconfig.json3
2 files changed, 4 insertions, 3 deletions
diff --git a/apps/landing/package.json b/apps/landing/package.json
index 2ffa198b..3343a542 100644
--- a/apps/landing/package.json
+++ b/apps/landing/package.json
@@ -10,8 +10,8 @@
"preview": "vite preview",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
- "format": "prettier . --ignore-path ../../.prettierignore",
- "format:fix": "prettier . --ignore-path ../../.prettierignore --write",
+ "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
+ "format:fix": "prettier . --cache --ignore-path ../../.prettierignore --write",
"typecheck": "tsc --noEmit"
},
"dependencies": {
diff --git a/apps/landing/tsconfig.json b/apps/landing/tsconfig.json
index 0fb0017a..10775d56 100644
--- a/apps/landing/tsconfig.json
+++ b/apps/landing/tsconfig.json
@@ -5,7 +5,8 @@
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
- }
+ },
+ "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "vite.config.ts"],
"exclude": ["node_modules"]