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

28 行
759B

  1. {
  2. "compilerOptions": {
  3. "target": "es2016",
  4. "module": "commonjs",
  5. "sourceRoot": "src",
  6. "outDir": "dist",
  7. "moduleResolution": "node",
  8. "allowSyntheticDefaultImports": true,
  9. "allowJs": true,
  10. "importHelpers": true,
  11. "jsx": "react",
  12. "alwaysStrict": true,
  13. "sourceMap": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "noImplicitReturns": true,
  17. "noUnusedLocals": true,
  18. "noUnusedParameters": true,
  19. "noImplicitAny": false,
  20. "noImplicitThis": false,
  21. "strictNullChecks": false,
  22. "experimentalDecorators": true
  23. },
  24. "include": [
  25. "src/**/*",
  26. "__tests__/**/*"
  27. ]
  28. }