tsconfig.json 708 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "checkJs": false,
  4. "jsx": "preserve",
  5. "rootDirs": ["./src"],
  6. "esModuleInterop": true,
  7. "skipLibCheck": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "allowJs": true,
  10. "allowSyntheticDefaultImports": true,
  11. "strict": true,
  12. "typeRoots": ["src/types", "../../node_modules/@types"],
  13. "types": []
  14. },
  15. "files": [],
  16. "include": ["src/types", "node_modules/@types"],
  17. "references": [
  18. {
  19. "path": "./tsconfig.lib.json"
  20. },
  21. {
  22. "path": "./tsconfig.spec.json"
  23. },
  24. {
  25. "path": "./cypress/tsconfig.json"
  26. },
  27. {
  28. "path": "./tests/integration/tsconfig.json"
  29. }
  30. ],
  31. "extends": "../../tsconfig.base.json"
  32. }