-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
ExternalRelates to another program, environment, or user action which we cannot control.Relates to another program, environment, or user action which we cannot control.
Description
From @giacomorebonato on June 23, 2016 18:53
- VSCode Version: 1.3.0-insider
- OS Version: El Capitan
Steps to Reproduce:
- Create a Typescript project
- Use decorators (I am using Mobx)
I keep seeing the warning:
[ts] Experimental suport for decorators is a feature that is subject to chang in a future release. Set the 'experimentalDecoratos' option to remove this warning.
Where should I set this option? Because my tsconfig.json should be right
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "./dist/"
},
"exclude": [
"client",
"node_modules",
"typings/browser",
"typings/browser.d.ts"
]
}
Copied from original issue: microsoft/vscode#8069
squarewave24, katspaugh, nau11713, chriszrc, qiansen1386 and 25 more
Metadata
Metadata
Assignees
Labels
ExternalRelates to another program, environment, or user action which we cannot control.Relates to another program, environment, or user action which we cannot control.