Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular 9->10 migration. TypeError: core_1.virtualFs.createSyncHost is not a function

After ng upgrade serve runs into an error:

TypeError: core_1.virtualFs.createSyncHost is not a function

any ideas of how to fix it?

like image 583
qiAlex Avatar asked Nov 24 '25 18:11

qiAlex


1 Answers

I had the exact same error after upgrading. Removing the node_modules and re-installing the dependencies fixed the problem:

# with yarn
rm -rf node_modules && yarn 

# with npm
rm -rf node_modules && npm install
like image 146
omnibrain Avatar answered Nov 26 '25 06:11

omnibrain