atom-typescript: set experimentalDecorators option atom-typescript: set experimentalDecorators option typescript typescript

atom-typescript: set experimentalDecorators option


In order to configure a particular project's TypeScript compiler settings, you need to create a tsconfig.json in the root directory of that project, like so:

{    "compilerOptions": {        "experimentalDecorators": true    }}

tsc and your editor plugin will both pick this up automatically, and the warning should disappear.