We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaf67a7 commit 7ba69c3Copy full SHA for 7ba69c3
1 file changed
packages/directlinespeech/tsup.config.ts
@@ -23,12 +23,16 @@ const config = applyConfig(config => ({
23
},
24
env: {
25
...config.env,
26
+
27
+ build_tool: 'tsup',
28
29
// Followings are required by microsoft-cognitiveservices-speech-sdk:
30
NODE_TLS_REJECT_UNAUTHORIZED: '',
31
SPEECH_CONDUCT_OCSP_CHECK: '',
32
SPEECH_OCSP_CACHE_ROOT: ''
33
- esbuildPlugins: [...config.esbuildPlugins, resolveCognitiveServicesToES2015],
34
+ // Intentionally overriding existing esbuild plugins.
35
+ esbuildPlugins: [resolveCognitiveServicesToES2015],
36
// We need to internalize event-target-shim because it appear as transient packages with a different version.
37
noExternal: [...(config.noExternal ?? []), 'event-target-shim']
38
}));
0 commit comments