Skip to content

Commit

Permalink
Release 10.1.1 (#83)
Browse files Browse the repository at this point in the history
## What's changed

* feat: prefer lenient config in ts checker
([#82](#82))
  • Loading branch information
puehringer authored Aug 5, 2024
2 parents 48a0230 + cc3f683 commit b451d58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ module.exports = (webpackEnv, argv) => {
// Build the repo and type-check
build: true,
mode: 'write-references',
configFile: path.join(workspacePath, 'tsconfig.json'),
configFile: fs.existsSync(path.join(workspacePath, 'tsconfig.lenient.json')) ? path.join(workspacePath, 'tsconfig.lenient.json') : path.join(workspacePath, 'tsconfig.json'),
},
}),
].filter(Boolean),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "visyn_scripts",
"description": "",
"version": "10.1.0",
"version": "10.1.1",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down

0 comments on commit b451d58

Please sign in to comment.