chore(config): 配置 jsconfig.json 中的 jsx 编译选项

- 为 jsconfig.json 添加 jsx: react 配置项
- 确保 jsx 文件能够被正确编译和识别
master
LiuJiaNan 2026-04-01 10:25:40 +08:00
parent 1b016aba54
commit b75c37e7fa
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@
"baseUrl": "src", "baseUrl": "src",
"paths": { "paths": {
"~/*": ["*"] "~/*": ["*"]
} },
"jsx": "react"
}, },
"include": ["src"] "include": ["src"]
} }