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 372f9fd commit 6bbee6bCopy full SHA for 6bbee6b
src/plugin.ts
@@ -88,7 +88,7 @@ function parseCompilerOptions(file: string, options?: Options): CompilerOptions
88
const name = basename(location);
89
const parsed = ts.parseJsonConfigFileContent(tsconfig, ts.sys, directory, undefined, name);
90
91
- return parsed.options;
+ return { ...parsed.options, ...options?.tsconfig?.override };
92
}
93
94
export {
0 commit comments