Skip to content

Commit

Permalink
Exclude venv directories from type checks
Browse files Browse the repository at this point in the history
Prevents TypeScript distributed with Python dependencies from being type-checked by the `**/*.ts` include
  • Loading branch information
sarayourfriend committed Jul 12, 2023
1 parent 61c5d5e commit 9d48bc3
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 @@ -55,7 +55,7 @@
/** End of non TypeScript files section */
"frontend/**/*.json"
],
"exclude": ["node_modules"],
"exclude": ["node_modules", "**/venv", "**/.venv"],
"vueCompilerOptions": {
"target": 2.7
}
Expand Down

0 comments on commit 9d48bc3

Please sign in to comment.