We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be5c88 commit 9bd1f7cCopy full SHA for 9bd1f7c
config/webpack.config.js
@@ -143,7 +143,7 @@ module.exports = (webpackEnv, argv) => {
143
entries = {};
144
}
145
146
- const tsconfigJson = parseTsconfig(path.join(workspacePath, 'tsconfig.json'));
+ const tsconfigJson = isSingleRepoMode ? parseTsconfig(path.join(workspacePath, 'tsconfig.json')) : null;
147
const isLegacyModuleResolution = tsconfigJson?.compilerOptions?.moduleResolution?.toLowerCase() === 'node';
148
if (isLegacyModuleResolution) {
149
console.warn('visyn user: you are still using moduleResolution: node. Try to upgrade to node16 as soon as possible!');
0 commit comments