amis2/.vscode/settings.json
吴多益 3c564e2777
feat: 提升 word 文档渲染还原度,支持 tooltip、shadow、覆盖顺序等 (#6496)
* chore: office viewer 增加 snapshot 测试用例

* 简单示例都改成 xml 格式

* 部分文字垂直显示

* 支持链接 tooltip

* 支持 shadown

* 支持旋转属性

* 修复 behideDoc 导致遮挡问题

* 修复部分 textbox 背景色错误问题

* 修复 textbox 覆盖顺序不正确问题
2023-03-29 20:36:41 +08:00

35 lines
920 B
JSON

{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"typescript.tsdk": "node_modules/typescript/lib",
"gitHistory.showEditorTitleMenuBarIcons": false,
"files.exclude": {
"**/lib": true,
"**/esm": true,
"**/sdk": true,
"**/tsconfig.tsbuildinfo": true,
"**/schema.json": true,
"**/lerna-debug.log": true,
"**/package-lock.json": true,
"**/.rollup.cache": true,
"public/**": true
},
"search.exclude": {
"**/lib": true,
"**/esm": true,
"**/sdk": true,
"**/tsconfig.tsbuildinfo": true,
"**/schema.json": true,
"**/lerna-debug.log": true,
"**/package-lock.json": true,
"**/.rollup.cache": true,
"public/**": true,
"examples/docs.json": true,
"examples/components/EChartsEditor/option-parts/**/*": true
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
}
}