Skip to content

Commit

Permalink
Fix outdir including src
Browse files Browse the repository at this point in the history
Adding the "tests" directory to the "include" in tsconfig changes the output structure. Because we have `tsconfig.test.json`, this include is not actually needed.
  • Loading branch information
joehoyle committed Mar 5, 2024
1 parent 80e48d6 commit f481aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"outDir": "dist"
},
"exclude": ["node_modules"],
"include": ["./src/**/*.ts", "./*.d.ts", "./tests/**/*.ts"],
"include": ["./src/**/*.ts", "./*.d.ts"],
}

0 comments on commit f481aca

Please sign in to comment.