Skip to content

Commit

Permalink
Default to excluding build directory from TypeScript compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonmade committed Aug 20, 2024
1 parent b5a777a commit 0cdca9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/strange-roses-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@quilted/typescript': patch
---

Default to excluding `build` directory from TypeScript compilation
2 changes: 1 addition & 1 deletion packages/typescript/source/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
"lib": ["dom", "dom.iterable", "esnext"],
"outDir": "${configDir}build/typescript"
},
"exclude": ["**/*.test.ts", "**/*.test.tsx"]
"exclude": ["**/*.test.ts", "**/*.test.tsx", "build"]
}

0 comments on commit 0cdca9a

Please sign in to comment.