只能使用以下settings.json
格式格式化*.ts
文件:
"[typescript]": {
"editor.formatOnSave": true
}
但我无法让它为*.tsx
文件工作。
只能使用以下settings.json
格式格式化*.ts
文件:
"[typescript]": {
"editor.formatOnSave": true
}
但我无法让它为*.tsx
文件工作。
"[typescriptreact]": {
"editor.formatOnSave": true
}
另请参阅语言特定的编辑器设置
您可以安装Prettier Code 格式化程序扩展并将这两个选项添加到您的 settings.json 文件中
{
"typescript.format.enable": false,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
使用像“ESLint”这样的插件的替代方法:
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}