tsconfig.json 296 B

123456789101112131415161718
  1. {
  2. "extends": "../../tsconfig.json",
  3. "compilerOptions": {
  4. "types": [
  5. "node"
  6. ]
  7. },
  8. "include": [
  9. "../src/**/*",
  10. "**/*.json",
  11. "**/*.tsx",
  12. "**/*.ts"
  13. ],
  14. "exclude": [
  15. "**/node_modules",
  16. "**/Pods"
  17. ]
  18. }