Search code examples
typescriptvisual-studio-codereact-tsx

Format *.tsx files on save in VS Code


In settings.json it is possible to only format *.ts files with:

"[typescript]": {
    "editor.formatOnSave": true
}

but I can't get it to work for *.tsx files.


Solution

  • "[typescriptreact]": {
        "editor.formatOnSave": true
    }
    

    See also Language specific editor settings