問題タブ [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.

0 投票する
0 に答える
176 参照

typescript - 複数のエクスポートされた関数を含む単一の index.ts ファイルを、esbuild を使用してコンパイル済みの JavaScript の個別のファイルにコンパイルする方法

myFunctions/src/index.tsファイルからエクスポートされた typescript 関数をコンパイルしたい

とのmyFunctions/dist個別のファイルを含むフォルダーにコピーし、esbuild を介してこれを実行します。現在、私はそれを動作させていますが、単一のファイルにしかコンパイルしていません。someFunction.jssomeOtherFunction.jsindex.js

個別のファイルを作成するには、entryPointsprop 値を単一のファイルではなくファイル名の配列にする必要があると思いますがindex.ts(に変更することに加えてoutfile) outDir、プログラムでこれを達成するのに苦労しています。呼び出しindex.tsに追加することなく、ファイルに関数を追加しbuildSyncます。