Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Commit

Permalink
refactor: exclude cli from typescript compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
boywithkeyboard committed Jul 11, 2022
1 parent 23f0b49 commit e0d6bbc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changeset/modern-boxes-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@darkflare/wjson": patch
---

refactor: exclude cli from typescript compilation

Exclude CLI file from TypeScript compilation to reduce package size. No change for users since the code is internal anyway.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
},
"exclude": [
"test",
"types"
"types",
"src/bin"
]
}

0 comments on commit e0d6bbc

Please sign in to comment.