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
It is not possible to compile a program using skype-http and typescript 3. The reason is that you are using an old version of kryo that includes *.ts files in the package. And these *.ts files are now no longer compilable with standard tsconfig compiler options. I am attaching a package.json and index.js that illustrates the problem.
To reproduce:
download both files into a new directory
npm i
./node_modules/.bin/tsc
You will get a bunch of compile errors like the ones in compilation-results.txt in the sample project.
To fix this, I believe you will have to upgrade to the latest kryo version, but looks like there are API changes to handle as well.
It is not possible to compile a program using skype-http and typescript 3. The reason is that you are using an old version of kryo that includes *.ts files in the package. And these *.ts files are now no longer compilable with standard tsconfig compiler options. I am attaching a package.json and index.js that illustrates the problem.
To reproduce:
npm i
./node_modules/.bin/tsc
You will get a bunch of compile errors like the ones in
compilation-results.txt
in the sample project.To fix this, I believe you will have to upgrade to the latest kryo version, but looks like there are API changes to handle as well.
Sample project.zip
The text was updated successfully, but these errors were encountered: