Me learning react like an absolute chungus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 line
571B

  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  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. },
  24. "include": [
  25. "src"
  26. ]
  27. }