Skip to content

Commit b451d58

Browse files
authored
Release 10.1.1 (#83)
## What's changed * feat: prefer lenient config in ts checker ([#82](#82))
2 parents 48a0230 + cc3f683 commit b451d58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/rspack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ module.exports = (webpackEnv, argv) => {
447447
// Build the repo and type-check
448448
build: true,
449449
mode: 'write-references',
450-
configFile: path.join(workspacePath, 'tsconfig.json'),
450+
configFile: fs.existsSync(path.join(workspacePath, 'tsconfig.lenient.json')) ? path.join(workspacePath, 'tsconfig.lenient.json') : path.join(workspacePath, 'tsconfig.json'),
451451
},
452452
}),
453453
].filter(Boolean),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "visyn_scripts",
33
"description": "",
4-
"version": "10.1.0",
4+
"version": "10.1.1",
55
"author": {
66
"name": "datavisyn GmbH",
77
"email": "[email protected]",

0 commit comments

Comments
 (0)