Enable resolveJsonModule for implicit JS/TS projects

For #93500
This commit is contained in:
Matt Bierner 2020-03-27 14:47:16 -07:00
parent c2c74e602d
commit 6bdf50706f

View file

@ -510,6 +510,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType
allowJs: true,
allowSyntheticDefaultImports: true,
allowNonTsExtensions: true,
resolveJsonModule: true,
};
}