tsconfig.json 560 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "commonjs",
  5. "allowJs": false,
  6. "checkJs": false,
  7. "jsx": "preserve",
  8. "strict": true,
  9. "rootDirs": ["./src"],
  10. "typeRoots": ["./types", "./node_modules/@types"],
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "forceConsistentCasingInFileNames": true,
  14. },
  15. "references": [
  16. {
  17. "path": "./tsconfig.lib.json"
  18. },
  19. {
  20. "path": "./tsconfig.spec.json"
  21. }
  22. ],
  23. "exclude": [
  24. "./dist",
  25. "./lib",
  26. ],
  27. "extends": "../../tsconfig.base.json"
  28. }