Add typecheck script to package.json (#1092)

This commit is contained in:
filtered
2025-06-30 17:54:20 -07:00
committed by GitHub
parent 0c5e0d4b73
commit d7597acefe
2 changed files with 5 additions and 4 deletions

View File

@@ -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

View File

@@ -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",