tsconfig.json 554 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "src",
  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. "module": "esnext",
  17. "moduleResolution": "node",
  18. "resolveJsonModule": true,
  19. "isolatedModules": true,
  20. "noEmit": true,
  21. "jsx": "preserve"
  22. },
  23. "include": [
  24. "src"
  25. ],
  26. "extends": "./tsconfig.paths.json"
  27. }