From 17e7a10c82b07f3ef63a4235a842159d6c08a7d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sat, 21 Dec 2024 14:01:50 +0100 Subject: [PATCH] test: ignore TS errors from dependencies Silences an error coming from `@types/readable-stream`, which cannot be fixed in this package. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89937fc..2d3015e 100644 --- a/package.json +++ b/package.json @@ -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": {