以下のようにNodeモジュールを読み込もうとするとエラーが発生する。
import base64url from 'base64url';
Cannot find module 'base64url'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?
tsconfig.jsonにNodeモジュールを使用するための設定をおこなっていなかった。
tsconfig.jsonに、moduleResolutionを追加する。
{
"compilerOptions": {
"sourceMap": true,
"target": "ES5",
"module": "ES2015",
"moduleResolution": "node"
}
}