You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building app-1, I got Unknown compiler option 'verbatimModuleSyntx.
So it seems like ts-loader is using the tsconfig.json even though the references point to pkg-a/tsconfig.build.json
I want to use verbatimModuleSyntax in tsconfig.json to tighten type checking and IDE support.
But ts-loader does not recognize it and with this issue, I don't have a way to exclude it.
Location of a Minimal Repository that Demonstrates the Issue.
No repro yet. This happens on some private project atm.
The text was updated successfully, but these errors were encountered:
Expected Behaviour
ts-loader
should build the dependent projects using the tsconfig specified in thereferences
field.Actual Behaviour
It seems like it is just building the dependent projects by using the
tsconfig.json
.Steps to Reproduce the Problem
e.g:
/packages/app-1/tsconfig.json
:/packages/pkg-a/tsconfig.build.json
:/packages/pkg-a/tsconfig.json
:When building
app-1
, I gotUnknown compiler option 'verbatimModuleSyntx
.So it seems like
ts-loader
is using thetsconfig.json
even though the references point topkg-a/tsconfig.build.json
I want to use
verbatimModuleSyntax
intsconfig.json
to tighten type checking and IDE support.But
ts-loader
does not recognize it and with this issue, I don't have a way to exclude it.Location of a Minimal Repository that Demonstrates the Issue.
No repro yet. This happens on some private project atm.
The text was updated successfully, but these errors were encountered: