Reputation: 656
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
Reputation: 10646
No. Since you generate code with a framework, you are stuck with the generated code.
Upvotes: 1