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 b6fce8d commit 7bc5847Copy full SHA for 7bc5847
1 file changed
src/cli/tsconfig.ts
@@ -137,16 +137,7 @@ export function createConfigFileUpdater(
137
if (!configFile || !configFilePath) return [];
138
139
if (!configFileMap.has(configFile)) {
140
- const parsedConfigFile = updateParsedConfigFile(
141
- ts.parseJsonSourceFileConfigFileContent(
142
- configFile,
143
- ts.sys,
144
- path.dirname(configFilePath),
145
- optionsToExtend,
146
- configFilePath
147
- )
148
- );
149
-
+ const parsedConfigFile = parseConfigFileWithSystem(configFilePath, optionsToExtend, ts.sys);
150
configFileMap.set(configFile, parsedConfigFile);
151
}
152
0 commit comments