tsconfig.json 639 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "extends": "./path.tsconfig.json",
  3. "compilerOptions": {
  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-jsx",
  23. "types": [
  24. "node"
  25. ],
  26. "ignoreDeprecations": "6.0"
  27. },
  28. "include": [
  29. "src"
  30. ]
  31. }