next.jsで下記のように絶対パスでimportできるようになったのですが、VSCodeの初期設定だとファイルパスを保管してくれません…
import React from 'react';
import CustomAppBar from '/components/uiParts/CustomAppBar';
設定方法
Path Intellisenseをインストール後、
jsconfig.jsonをおいて、paths設定してあげるとPath Intellisenseでも保管ができるようになります。
jsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"/*": [
"./*"
]
}
}
}
VSCode拡張
Path Intellisense - Visual Studio Marketplace
https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense