tsconfig.json

Configuration file for the TypeScript compiler. The presence of this file will affect the edition and the compilation of TypeScript files.

See What is a tsconfig.json for more details.

Default config

For convenience, a default configuration is used if no tsconfig.json is present.

{
  "target": "esnext",
  "allowNonTsExtensions": "true",
  "experimentalDecorators": "true",
  "jsx": "react",
  "reactNamespace": "React",
}