tsconfig.json 820 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "strictNullChecks": true,
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "esModuleInterop": true,
  9. "allowSyntheticDefaultImports": true,
  10. "strict": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "noFallthroughCasesInSwitch": true,
  13. "module": "esnext",
  14. "moduleResolution": "node",
  15. "resolveJsonModule": true,
  16. "isolatedModules": true,
  17. "noEmit": true,
  18. "jsx": "react-jsx"
  19. },
  20. "extends": "./tsconfig.paths.json",
  21. "exclude": ["node_modules", "cypress.config.ts"],
  22. "include": [
  23. "packages/app/src",
  24. "packages/app/__tests__",
  25. "packages/webpack/bin",
  26. "packages/webpack/scripts",
  27. "packages/webpack/config",
  28. ".eslintrc.cjs",
  29. "./commitlint.config.cjs"
  30. ]
  31. }