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

20 行
465 B

  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": false,
  4. "target": "es5",
  5. "module": "commonjs",
  6. "jsx": "react",
  7. "moduleResolution": "node",
  8. "noImplicitAny": false,
  9. "noUnusedLocals": false,
  10. "noUnusedParameters": false,
  11. "removeComments": true,
  12. "strictNullChecks": true,
  13. "preserveConstEnums": true,
  14. "sourceMap": true,
  15. "esModuleInterop": true,
  16. "lib": ["es2015", "es2016", "dom"],
  17. "types": ["node"]
  18. }
  19. }