nestapp/.vscode/settings.json
Leon Zeng 313b997903 init
2024-04-09 15:18:18 +08:00

17 lines
678 B
JSON

{
// 使用eslint+prettier自动格式化
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// 导入模块时默认使用相对于项目的路径
"javascript.preferences.importModuleSpecifier": "project-relative",
// jsdoc注释时不带return
"typescript.suggest.jsdoc.generateReturns": false,
// 只启用项目范围的错误报告
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
// 使用项目内部安装的ts的sdk
"typescript.tsdk": "node_modules/typescript/lib",
// 默认使用pnpm作为包安装的管理工具
"npm.packageManager": "pnpm",
}