diff --git a/CLAUDE.md b/CLAUDE.md index 1dc8df9..817ed3e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,2 +1,2 @@ -- Always run the db generate, migrate and build commands to check for errors after completing your changes. -- Always run the db generate, migrate and build comands to check for errors after completing your changes.  \ No newline at end of file +- Always run the LINT and TYPESCHECK scripts after completing your changes. This is to check for any issues. +- NEVER start the dev server yourself. If you need something from the terminal, ask the user to provide it to you. diff --git a/package.json b/package.json index 10b252b..986d7f7 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "build": "pnpm run db:migrate && next build", "start": "next start", "lint": "next lint", + "typecheck": "tsc --noEmit", "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", "db:push": "drizzle-kit push",