user9923760
user9923760

Reputation: 656

Cordova with Angular - Debug with Typescript Files?

I am trying to debug the application with the source files. They are Typescript files. I am debugging with chrome but I can only debug javascript files generated by cordova and it is hard to debug it. Is it possible to debug the typescript files?

ng b --project=<NameProject>
cordova build android
cordova run android

Upvotes: 0

Views: 228

Answers (1)

Eric
Eric

Reputation: 10646

No. Since you generate code with a framework, you are stuck with the generated code.

Upvotes: 1

Related Questions