tsconfig.json 927 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "target": "es5",
  5. "lib": ["dom", "dom.iterable", "esnext"],
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "esModuleInterop": true,
  9. "allowSyntheticDefaultImports": true,
  10. "strict": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "noFallthroughCasesInSwitch": true,
  13. "module": "esnext",
  14. "moduleResolution": "node",
  15. "resolveJsonModule": true,
  16. "isolatedModules": true,
  17. "jsx": "react-jsx",
  18. "declaration": true,
  19. "outDir": "./lib",
  20. "allowUnreachableCode": false,
  21. "allowUnusedLabels": false,
  22. "noImplicitReturns": true,
  23. "noImplicitUseStrict": false,
  24. "noStrictGenericChecks": false,
  25. "noUnusedLocals": true,
  26. "noUnusedParameters": true
  27. },
  28. "include": ["src/**/*"],
  29. "exclude": ["node_modules", "lib"]
  30. }