Skip to content

Commit 24a2c2a

Browse files
committed
client: Add type-check command
1 parent dea4bbc commit 24a2c2a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,10 @@
6565
"fix:js:lint": "npm run check:js:lint -- --fix",
6666
"fix:js:prettify": "npm run check:js:prettify -- --write",
6767
"check": "npm run check:js && npm run check:styles",
68-
"check:js": "npm run check:js:prettify && npm run check:js:lint",
68+
"check:js": "npm run check:js:prettify && npm run check:js:lint && npm run check:js:type",
6969
"check:js:lint": "eslint",
7070
"check:js:prettify": "prettier '**.{tsx,ts,js}' --check",
71+
"check:js:type": "tsc --noEmit",
7172
"check:styles": "npm run check:styles:lint && npm run check:styles:prettify",
7273
"check:styles:lint": "stylelint styles/*.scss",
7374
"check:styles:prettify": "prettier styles/*.scss --check",

0 commit comments

Comments
 (0)