tsconfig.browser.json 545 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "es2015",
  4. "module": "es2015",
  5. "moduleResolution": "node16",
  6. "allowJs": true,
  7. "lib": [
  8. "es2015",
  9. "dom"
  10. ],
  11. "noUnusedLocals": true,
  12. "noImplicitUseStrict": true,
  13. "resolveJsonModule": true,
  14. "jsx": "react",
  15. "jsxFactory": "createElement",
  16. "strictBindCallApply": true,
  17. "skipLibCheck": true,
  18. "sourceMap": true,
  19. "types": [],
  20. "composite": true,
  21. "declaration": true,
  22. "declarationMap": true,
  23. "allowSyntheticDefaultImports": true
  24. }
  25. }