path.resolve(...paths) は、引数に指定されたpathを結合して絶対pathに変換する。 ドキュメントに以下の記述があった。 If, after processing all given path segments, an absolute path has not yet been generated, the current working directory is used. 与えられたパスセグメントを処理した後、絶対パスが生成されていない場合、現在の作業ディレクトリが使用されます。 つまり、第一引数を絶対パスで指定していないと、実行時のディレクトリ起点となり出力され…