tsconfig.json 275 B

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