As I work on developing a CDK library, I have encountered an issue where the CDK fails to build if a variable is not assigned for use. While I understand this is not a recommended practice and results in a test error, it is necessary for my current development, saving, and testing purposes. Upon reviewing the Projen API documentation, I noticed that the tsconfig API includes the noUnusedLocals option (refer to https://github.com/projen/projen/blob/main/API.md#projen-typescriptcompileroptions). However, I am unable to locate an option to set NoUnusedLocals: false in the projenrc.js file or other locations. Additionally, editing the protected tsconfig* files directly is not an option due to the constraints of the projen build system. Can anyone suggest a workaround to disable the requirement for assigning variables?