feat: enhance project configuration with type checking and improved .gitignore entries

This commit is contained in:
Firman Ramdhani
2026-04-06 12:23:49 +07:00
parent 8c7b6d3017
commit 50592f27f3
9 changed files with 47 additions and 15 deletions
+4 -1
View File
@@ -19,7 +19,10 @@
"package:linux": "pnpm run build:desktop && cd apps/desktop && pnpm run package:linux",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test"
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean:workspaces": "rm -rf node_modules **/*/node_modules .turbo **/*/.turbo dist **/*/dist out **/*/out web-dist **/*/web-dist release **/*/release",
"nuke": "pnpm run clean:workspaces && pnpm install && pnpm build"
},
"devDependencies": {
"prettier": "^3.2.5",