Skip to content

Commit

Permalink
Exclude vitest config from compilation
Browse files Browse the repository at this point in the history
- Prevents confusion caused if vite finds multiple config files (JS and TS)
  • Loading branch information
mikeharder committed Dec 24, 2024
1 parent adbc241 commit 61fe81b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions eng/tools/eslint-plugin-tsv/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
}
"outDir": "./dist"
},
"exclude": [
"node_modules",
"dist",
"vitest.config.ts"
]
}

0 comments on commit 61fe81b

Please sign in to comment.