When running the plugin i get:
error TS5053: Option 'emitDeclarationOnly' cannot be specified with option 'noEmit'.
in my config I only set:
"emitDeclarationOnly": true,
there is no 'noEmit' anywhere in my config, after checking you code i suspect that this is the issue:
if (compilerOptions.noEmit === undefined) compilerOptions.noEmit = true;
|
if (compilerOptions.noEmit === undefined) compilerOptions.noEmit = true; |
you aggregate this to my config and then there is the conflict
When running the plugin i get:
in my config I only set:
there is no 'noEmit' anywhere in my config, after checking you code i suspect that this is the issue:
esbuild-plugins/packages/esbuild-plugin-typecheck/src/typescript-worker.ts
Line 212 in 8a4748e
you aggregate this to my config and then there is the conflict