1. noImplicitAny,开启 any参数的自动映射,不需要显式的指明 any
      1. 例如:onClick: (e: any) => {}
      2. 是个小技巧,不是 ts的标准
    1. {
    2. "compilerOptions": {
    3. "noImplicitAny": false, // 开启 any参数的自动映射
    4. "target": "es5",
    5. "lib": [
    6. "dom",
    7. "dom.iterable",
    8. "esnext"
    9. ],
    10. "allowJs": true,
    11. "skipLibCheck": true,
    12. "esModuleInterop": true,
    13. "allowSyntheticDefaultImports": true,
    14. "strict": true,
    15. "forceConsistentCasingInFileNames": true,
    16. "noFallthroughCasesInSwitch": true,
    17. "module": "esnext",
    18. "moduleResolution": "node",
    19. "resolveJsonModule": true,
    20. "isolatedModules": true,
    21. "noEmit": true,
    22. "jsx": "react",
    23. "plugins": [
    24. {
    25. "name": "typescript-plugin-css-modules"
    26. }
    27. ]
    28. },
    29. "include": [
    30. "src"
    31. ]
    32. }