I have a CDK application where I am getting context values, like:
const stage: StageType = app.node.tryGetContext('stage');
I followed the JetBrains documentation for setting a run configuration using ts-node, however context is created by the CDK CLI. My code fails to run with the necessary context values.
Is there a way to debug, using using the CDK CLI to start the application?
