Merge pull request #9009 from Microsoft/reusing-program-missing-check

check moduleResolution when verifying that program can be reused
This commit is contained in:
Vladimir Matveev 2016-06-07 15:36:05 -07:00
commit 6913c32db6

View File

@ -1143,6 +1143,7 @@ namespace ts {
// if any of these properties has changed - structure cannot be reused
const oldOptions = oldProgram.getCompilerOptions();
if ((oldOptions.module !== options.module) ||
(oldOptions.moduleResolution !== options.moduleResolution) ||
(oldOptions.noResolve !== options.noResolve) ||
(oldOptions.target !== options.target) ||
(oldOptions.noLib !== options.noLib) ||