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

20 行
514 B

8 年前
  1. {
  2. "compilerOptions": {
  3. "forceConsistentCasingInFileNames": true,
  4. "lib": [ "es2015" ],
  5. "module": "commonjs",
  6. "noFallthroughCasesInSwitch": true,
  7. "noImplicitReturns": true,
  8. "noUnusedLocals": true,
  9. "outDir": "out",
  10. "removeComments": true,
  11. "rootDir": ".",
  12. "skipLibCheck": true,
  13. "sourceMap": true,
  14. "strict": true,
  15. "target": "es2015"
  16. },
  17. "exclude": [
  18. "node_modules",
  19. ".vscode-test"
  20. ]
  21. }