diff --git a/CLAUDE.md b/CLAUDE.md index 262647880..cebc67dac 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -9,9 +9,9 @@ # Bash commands -- `tsc` Run the typechecker -- `nr build` Build the project -- `nr lint:fix` Run ESLint +- `npm run typecheck` Run the typechecker +- `npm run build` Build the project +- `npm run lint:fix` Run ESLint # Code style diff --git a/package.json b/package.json index 2a5c98a44..1476de1b2 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ "lint:fix": "eslint --fix", "lint:ci": "eslint src", "format": "prettier --check './src/*.{js,ts,tsx,vue,mts}'", - "format:fix": "prettier --write './src/*.{js,ts,tsx,vue,mts}'" + "format:fix": "prettier --write './src/*.{js,ts,tsx,vue,mts}'", + "typecheck": "tsc" }, "repository": { "type": "git",