Skip to content

Commit

Permalink
package.json - fix typecheck script
Browse files Browse the repository at this point in the history
  • Loading branch information
haochenx committed Jan 22, 2024
1 parent 4cab23e commit 36d2237
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 @@ -5,11 +5,11 @@
"scripts": {
"build": "tsup",
"lint": "eslint ." ,
"typecheck": "tsc -p tsconfig.json" ,
"typecheck": "rm -rf _tsout && tsc -p tsconfig.lib.json && tsc -p tsconfig.test.json && tsc -p tsconfig.json" ,
"verify": "yarn build && yarn test && yarn lint && yarn typecheck" ,
"dev": "tsup --watch",
"test": "jest",
"clean": "rm -rf dist node_modules"
"clean": "rm -rf dist node_modules _tsout"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 36d2237

Please sign in to comment.