Skip to content

Commit

Permalink
chore: compile cypress TypeScript files without transpiling
Browse files Browse the repository at this point in the history
  • Loading branch information
haideralsh committed Nov 1, 2023
1 parent 357d2aa commit 511e016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": "rollup -c",
"build:storybook": "build-storybook",
"check": "yarn check:types && yarn check:lint && yarn check:format",
"check:types": "tsc && cd cypress && tsc",
"check:types": "tsc && cd cypress && tsc --noEmit",
"check:lint": "eslint --config ./.eslintrc .'*/**/*.{js,ts,tsx}'",
"check:format": "prettier -c .",
"fix": "yarn fix:lint && yarn fix:format",
Expand Down Expand Up @@ -168,7 +168,7 @@
},
"husky": {
"hooks": {
"pre-push": "yarn check"
"pre-push": "yarn run check"
}
},
"jest": {
Expand Down

0 comments on commit 511e016

Please sign in to comment.