Skip to content

Commit

Permalink
test: update exclude in test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Nov 12, 2024
1 parent 81e5a85 commit 6430b46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/__fixtures__/configDir-syntax/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"include": ["${configDir}/*.ts"],
"exclude": ["dist", "vite.config.ts"],
"exclude": ["dist"],
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
Expand Down
2 changes: 1 addition & 1 deletion test/__fixtures__/with-baseUrl/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"exclude": ["dist", "vite.config.ts"],
"exclude": ["dist"],
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
Expand Down
2 changes: 1 addition & 1 deletion test/__fixtures__/without-baseUrl/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"exclude": ["dist", "vite.config.ts"],
"exclude": ["dist"],
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
Expand Down

0 comments on commit 6430b46

Please sign in to comment.