Skip to content

Commit

Permalink
fix: Do not perform type checking for TS files from jar files
Browse files Browse the repository at this point in the history
The TS files that come from JAR files are not under control of the project developer so enforcing project TS rules on them does not make sense. This is similar to "skipLibCheck" used for TS files that are in node_modules.

Fixes #15485
  • Loading branch information
Artur- committed Jan 17, 2023
1 parent 3946b30 commit 545073d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,7 @@
"frontend/**/*",
"types.d.ts"
],
"exclude": []
"exclude": [
"frontend/generated/jar-resources/**"
]
}

0 comments on commit 545073d

Please sign in to comment.