From ed5c17b64f993e546e793b1a8dc5592885438f0b Mon Sep 17 00:00:00 2001 From: Ryan Lepinski Date: Fri, 19 Apr 2024 14:57:50 -0700 Subject: [PATCH] Exclude example --- package.json | 2 +- tsconfig.json | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 01e99d8e..4eb7a39c 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "example": "npm run --prefix example ${COMMAND}", "bootstrap": "npm ci && npm --prefix example ci && npm run --prefix example pods", "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build", - "docs": "typedoc --tsconfig ./tsconfig.json --out docs src/index.tsx --exclude example/**" + "docs": "typedoc --tsconfig ./tsconfig.json --out docs src/index.tsx --exclude example/** --excludeNotDocumented" }, "keywords": [ "react-native", diff --git a/tsconfig.json b/tsconfig.json index f541e053..ad485de9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,6 +22,9 @@ "resolveJsonModule": true, "skipLibCheck": true, "strict": true, - "target": "esnext" - } + "target": "esnext", + }, + "exclude": [ + "example" + ] }