-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
target not support ES7 in jsconfig.json file #311
Comments
@welefen Not sure if you noticed or not, but there is experimental support for ES7 decorators. In your jsconfig.json file, use the {
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"experimentalDecorators": true
}
} That seems to be all the ES7 support you get at this time. |
What about |
+1 Maybe it has changed since last year and there are new ES7-related options available ? For example new function bind |
moving this to TypeScript from which VS Code gets TS and JS smartness |
This issue was moved to microsoft/TypeScript#8495 |
target not support ES7 in jsconfig.json file
The text was updated successfully, but these errors were encountered: