пятница, 6 декабря 2019 г.

[Typescript] "cannot find module 'vue'" error fix

When you write import Vue from 'vue'; and get error cannot find module 'vue' , fix it with adding this in tsconfig.json:

{
  "compilerOptions": {
    "moduleResolution": "node",
    ...
   }
   ...
}

Комментариев нет:

Отправить комментарий