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",
...
}
...
}
{
"compilerOptions": {
"moduleResolution": "node",
...
}
...
}
Комментариев нет:
Отправить комментарий