Hello, the new option verbatimModuleSyntax has a very simple and clear description, but nothing is said here about how this option affects incremental compilation.
compilerOptions = {
incremental: true,
isolatedModules: false,
verbatimModuleSyntax: true,
}
When this option is enabled, when changing a file on which other files depend (they import this file), these dependent files are not added to the set of changed files, the same effect will be if you enable the isolatedModules = true option.
I wanted to know if this is intended behavior or a bug?
Not including dependent files in the set of changed files breaks some logic in our builder.