Skip to content

Commit

Permalink
test: ignore TS errors from dependencies
Browse files Browse the repository at this point in the history
Silences an error coming from `@types/readable-stream`, which cannot be fixed in this package.
  • Loading branch information
targos committed Dec 21, 2024
1 parent 2dd9100 commit 6de29c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lint": "standard *.js test/*.js",
"test": "npm run lint && npm run test:types && node test/test.js | faucet",
"test:ci": "npm run lint && node test/test.js && npm run test:types",
"test:types": "tsc --target esnext --moduleResolution node --allowJs --noEmit test/test.js",
"test:types": "tsc --target esnext --moduleResolution node --allowJs --noEmit --skipLibCheck test/test.js",
"build": "true"
},
"repository": {
Expand Down

0 comments on commit 6de29c8

Please sign in to comment.