tsconfig.json 855 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "strictNullChecks": true,
  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. "extends": "./tsconfig.paths.json",
  25. "exclude": [
  26. "node_modules",
  27. "cypress.config.ts"
  28. ],
  29. "include": [
  30. "packages/app/src",
  31. "packages/app/__tests__",
  32. "packages/webpack/bin",
  33. "packages/webpack/scripts",
  34. "packages/webpack/config",
  35. ".eslintrc.cjs",
  36. "./commitlint.config.cjs"
  37. ]
  38. }