您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
463 B

  1. {
  2. "editor.insertSpaces": true,
  3. "files.exclude": {
  4. "node_modules": true,
  5. "out": true
  6. },
  7. "files.trimTrailingWhitespace": true,
  8. "search.exclude": {
  9. "node_modules": true,
  10. "out": true
  11. },
  12. "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
  13. "typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
  14. }