You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i build with Angular CLI, i have this error :
ERROR in node_modules/api-ai-javascript/ts/Request/TTSRequest.ts(17,31): error TS2339: Property 'DEFAULT_TTS_HOST' does not exist on type 'typeof ApiAiConstants'.
To unlock the problem i need to add : export const DEFAULT_TTS_HOST = ''
in the file : node_modules/api-ai-javascript/ts/ApiAiConstants.ts
The text was updated successfully, but these errors were encountered:
I'm not even sure this code that's causing the compilation failure is even used. For anyone else experiencing this issue, I was able to get around the compilation errors by excluding the file from compilation. Update your tsconfig.json file with the following.
I'm using Angular 6, so you may need to alter this based on your configuration.
When i build with Angular CLI, i have this error :
To unlock the problem i need to add :
export const DEFAULT_TTS_HOST = ''
in the file : node_modules/api-ai-javascript/ts/ApiAiConstants.ts
The text was updated successfully, but these errors were encountered: