問題タブ [esbuild]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
typescript - 複数のエクスポートされた関数を含む単一の index.ts ファイルを、esbuild を使用してコンパイル済みの JavaScript の個別のファイルにコンパイルする方法
myFunctions/src/index.ts
ファイルからエクスポートされた typescript 関数をコンパイルしたい
とのmyFunctions/dist
個別のファイルを含むフォルダーにコピーし、esbuild を介してこれを実行します。現在、私はそれを動作させていますが、単一のファイルにしかコンパイルしていません。someFunction.js
someOtherFunction.js
index.js
個別のファイルを作成するには、entryPoints
prop 値を単一のファイルではなくファイル名の配列にする必要があると思いますがindex.ts
(に変更することに加えてoutfile
) outDir
、プログラムでこれを達成するのに苦労しています。呼び出しindex.ts
に追加することなく、ファイルに関数を追加しbuildSync
ます。