Is there a way to turn on ES6/ES7 syntax support in vscode?

前端 未结 7 983
既然无缘
既然无缘 2020-12-02 14:51

Edit 3: Starting in version 0.4.0, ES6 syntax can be turned on by adding a jsconfig.json file to the project folder with the following contents:

相关标签:
7条回答
  • 2020-12-02 15:26

    Alternatively you can use Flow instead of Typescript, which is much easier to setup and migrate to. I wrote a small article on how to setup Flow with VS Code.

    0 讨论(0)
  • 2020-12-02 15:27

    It's quite easy, at the root of your project create a jsconfig.json file and write this object in it:

    {
        "compilerOptions": {
            "target": "ES6",
            "module": "commonjs"
        }
    }
    
    0 讨论(0)
  • 2020-12-02 15:35

    Otherwise you can use ESLint to highlight ES7 error (using babel parser or others): VSCode Linter ES6 ES7 Babel linter

    0 讨论(0)
  • 2020-12-02 15:42

    Adding to the above answers...

    As per Docs of VS Code..

    Make sure that you place the jsconfig.json at the root of your JavaScript project and not just at the root of your workspace. Below is a jsconfig.json file which defines the JavaScript target to be ES6 and the exclude attribute excludes the node_modules folder.

    {
        "compilerOptions": {
            "target": "ES6"
        },
        "exclude": [
            "node_modules"
        ]
    }
    

    Here is an example with an explicit files attribute.

    {
        "compilerOptions": {
            "target": "ES6"
        },
        "files": [
            "src/app.js"
        ]
    }
    

    The files attribute cannot be used in conjunction with the exclude attribute. If both are specified, the files attribute takes precedence.

    also try editing the "target" property in tsconfig.json

    {
      "compilerOptions": {
        "target": "es5",//es6
        "module": "system",
        "moduleResolution": "node",
        "sourceMap": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "removeComments": false,
        "noImplicitAny": false
      },
      "exclude": [
        "node_modules",
        "typings/main",
        "typings/main.d.ts"
      ]
    }
    
    0 讨论(0)
  • 2020-12-02 15:49

    As of this date and according to the ESLint docs on the VSCode Marketplace, including a .eslintrc configuration file in the root of the project enables ES6 linting in the ESLint VSCode extension.

    My .eslintrc config file looks like this:

    extends:
      - standard
    parser: babel-eslint
    rules:
      object-curly-spacing: [ error, always ]
      react/prop-types: off
      space-before-function-paren: off
    

    I have eslint installed via npm in node_modules and all I know is that with .eslintrc in the project root folder ES6 linting works and without it, it doesn't.

    Hope this helps...

    0 讨论(0)
  • 2020-12-02 15:52

    Currently, the only way to use ES6 and ES7 features is to use Typescript.

    On the other hand, here you can see that there is a feature request for ES6 and ES7

    0 讨论(0)
提交回复
热议问题