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
Maybe try using parseJsonConfigFileContent from TS Compiler API? It resolves CompilerOptions well, though a bit more complicated in use: you need to create an instance of ParseConfigHost. It can be done like here.
The text was updated successfully, but these errors were encountered:
Hello!
Noticed that method that is being used to resolve ts config compiler options not working properly if passed config has
extends
field.const {options} = ts.convertCompilerOptionsFromJson(tsConfig.compilerOptions);
Maybe try using
parseJsonConfigFileContent
from TS Compiler API? It resolvesCompilerOptions
well, though a bit more complicated in use: you need to create an instance ofParseConfigHost
. It can be done like here.The text was updated successfully, but these errors were encountered: