tsconfig.json 617 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["DOM", "DOM.Iterable", "ESNext"],
  5. "module": "ESNext",
  6. "skipLibCheck": true,
  7. /* Bundler mode */
  8. "allowJs": true,
  9. "allowSyntheticDefaultImports": true,
  10. "esModuleInterop": true,
  11. "moduleResolution": "node",
  12. "noEmit": true,
  13. "resolveJsonModule": true,
  14. "isolatedModules": true,
  15. "jsx": "react-jsx",
  16. /* Linting */
  17. "strict": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "noFallthroughCasesInSwitch": true
  21. },
  22. "include": ["src"],
  23. "references": [{ "path": "./tsconfig.node.json" }]
  24. }