How to get forge lint working on typescript and tsx?

I am unable to use the forge lint command to generate scopes for the API request.
Had a feeling it may be a result of upgrading the project to typescript, and that was the case.

Did a test with one of the example requests that I knew to be previously working Part 2: Call a Jira Service Management API - and after renaming my file to ‘jsx’ from ‘tsx’ - things started working.

Is anyone aware of a way to make this work with typescript?

Here is my tsconfig

{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "esnext",
      "DOM"
    ],
    "allowJs": false,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": false,
    "jsx": "react-jsx",
    "noImplicitAny": true
  },
  "include": [
    "src"
  ],
  "exclude": ["node_modules", "dist"]
}