Skip to content

Commit

Permalink
feat(tsconfig): optimize tsconfig init template
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Sep 24, 2023
1 parent e49cc78 commit b59e756
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/small-mirrors-kiss.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@git-validator/tsconfig": patch
---

feat(tsconfig): optimize tsconfig init template
2 changes: 1 addition & 1 deletion packages/tsconfig/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Command } from "commander";
const generatingTsconfigContent = `{
"extends": "${process.env["TSCONFIG_EXTENDS"] ?? "@git-validator/tsconfig"}",
"include": ["src"],
"exclude": ["**/*.spec.?s", "**/*.test.?s"],
"exclude": ["**/*.spec.ts", "**/*.test.ts"],
"compilerOptions": {
"outDir": "dist"
}
Expand Down

0 comments on commit b59e756

Please sign in to comment.