tsconfig.json 546 B

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