tsconfig.json 785 B

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