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.

30 lines
629 B

9 months ago
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./src",
  4. "target": "es5",
  5. "lib": [
  6. "dom",
  7. "dom.iterable",
  8. "esnext"
  9. ],
  10. "paths": {
  11. "~/*":["*"]
  12. },
  13. "allowJs": true,
  14. "skipLibCheck": true,
  15. "esModuleInterop": true,
  16. "allowSyntheticDefaultImports": true,
  17. "strict": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "noFallthroughCasesInSwitch": true,
  20. "module": "esnext",
  21. "moduleResolution": "node",
  22. "resolveJsonModule": true,
  23. "isolatedModules": true,
  24. "noEmit": true,
  25. "jsx": "react-jsx"
  26. },
  27. "include": [
  28. "src"
  29. ]
  30. }