-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature]: Add override for noEmit
specified in TSConfig
#5770
Comments
Could you provide the project? Because we don't know which tsconfig from |
Thanks for your response! Unfortunately, I can’t provide the project itself, as it’s a private one. This is the TSConfig I’m using. |
Understand, what library are you using? |
|
I created a project as described to try to reproduce the problem, but it didn't reproduce the problem. |
Thanks for creating that! I forgot to mention I had |
Can't reproduce the error even adding |
What problem does this feature solve?
When using Modern.js alongside @total-typescript/tsconfig,
noEmit: false
has to be specified explicitly withintsconfig.json
, otherwisemodern build
fails:Unfortunately, though, when I have
noEmit: false
specified (either implicitly or explicitly) alongsideallowJs: true
, IDEs like VS Code show an error message as follows when viewingtsconfig.json
while having any JS files within the source directory:Therefore, it’d be convenient to allow specifying
noEmit: true
within theuserTsconfig
, possibly overriding it by appending--noEmit false
to the CLI arguments over here.What does the proposed API look like?
N/A
The text was updated successfully, but these errors were encountered: