tsconfig.json 741 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": [
  5. "DOM",
  6. "DOM.Iterable",
  7. "ESNext"
  8. ],
  9. "allowJs": false,
  10. "skipLibCheck": false,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "strict": true,
  14. "strictNullChecks": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "module": "ESNext",
  17. "moduleResolution": "Node",
  18. "resolveJsonModule": true,
  19. "isolatedModules": false,
  20. "jsx": "react-jsx",
  21. "declaration": true,
  22. "experimentalDecorators": true,
  23. "emitDecoratorMetadata": true,
  24. "typeRoots": [
  25. "node_modules/@types"
  26. ],
  27. "noFallthroughCasesInSwitch": true
  28. },
  29. "include": [
  30. "./src"
  31. ],
  32. "exclude": [
  33. "node_modules"
  34. ]
  35. }