Skip to content

Commit

Permalink
Exclude example
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Apr 19, 2024
1 parent aa29ab5 commit ed5c17b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext"
}
"target": "esnext",
},
"exclude": [
"example"
]
}

0 comments on commit ed5c17b

Please sign in to comment.