Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
Exclude test files from release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
timkendall committed Nov 25, 2021
1 parent 6813a65 commit 1b56242
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions codegen/tsconfig.release.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.release.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*"],
"exclude": ["src/**/*_test.ts"],
"exclude": ["src/**/*_test.ts", "src/**/*.test.ts"],
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
Expand Down

0 comments on commit 1b56242

Please sign in to comment.