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

21 行
545 B

  1. {
  2. "exclude": ["node_modules"],
  3. "compilerOptions": {
  4. "module": "ESNext",
  5. "lib": ["ESNext", "DOM"],
  6. "importHelpers": true,
  7. "declaration": true,
  8. "sourceMap": true,
  9. "strict": true,
  10. "noUnusedLocals": true,
  11. "noUnusedParameters": true,
  12. "noImplicitReturns": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "moduleResolution": "node",
  15. "jsx": "react",
  16. "esModuleInterop": true,
  17. "target": "es2018",
  18. "emitDeclarationOnly": true
  19. }
  20. }