diff --git a/package.json b/package.json index 00ae300..3b05f1c 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ }, "scripts": { "build": "pnpm run -r prebuild && cross-env NODE_ENV=production pnpm -r run build", - "build-docs": "typedoc", + "build-docs": "npm run check-types && typedoc", "format": "prettier --write .", "check-format": "prettier --check .", "lint": "eslint .", diff --git a/typedoc.json b/typedoc.json index c7028c6..18ac582 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,5 +1,6 @@ { "$schema": "https://typedoc.org/schema.json", "entryPoints": ["./packages/core/src/index.ts"], - "hostedBaseUrl": "https://js-sdk-reference.argos-ci.com" + "hostedBaseUrl": "https://js-sdk-reference.argos-ci.com", + "skipErrorChecking": true }