Skip to main content
Skip table of contents

TypeScript Compiler Errors

TypeScript compile errors are recognized by Code Review Assistant and displayed in pull requests.
Use the TypeScript options to configure what is considered an error.

JSON
{
  "compilerOptions": {                       
    "target": "es2016",     
    "module": "commonjs",     
    "strict": true,           /* Enable all strict type-checking options. */
    "noImplicitAny": true,    /* Enable error reporting for expressions and declarations with an implied `any` type.. */
    "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
    ...
  }
}

And then compile your TypeScript as part of your build pipeline.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.