tsconfig.json 588 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "noImplicitAny": false,
  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. "noEmit": true,
  18. "jsx": "react-jsx",
  19. "baseUrl": "./src",
  20. "downlevelIteration": true,
  21. },
  22. "include": ["src"]
  23. }