cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
.dockerignore
59lines · modecode
| 1 | # Dependencies |
| 2 | node_modules/ |
| 3 | **/node_modules/ |
| 4 | |
| 5 | # Build outputs |
| 6 | dist/ |
| 7 | **/dist/ |
| 8 | |
| 9 | # Git |
| 10 | .git/ |
| 11 | .gitignore |
| 12 | |
| 13 | # CI/CD |
| 14 | .github/ |
| 15 | .gitlab-ci.yml |
| 16 | .travis.yml |
| 17 | |
| 18 | # IDE |
| 19 | .vscode/ |
| 20 | .idea/ |
| 21 | *.swp |
| 22 | *.swo |
| 23 | *~ |
| 24 | |
| 25 | # OS |
| 26 | .DS_Store |
| 27 | Thumbs.db |
| 28 | |
| 29 | # Testing |
| 30 | test/ |
| 31 | tests/ |
| 32 | __tests__/ |
| 33 | *.test.js |
| 34 | *.spec.js |
| 35 | coverage/ |
| 36 | .nyc_output/ |
| 37 | |
| 38 | # Logs |
| 39 | *.log |
| 40 | npm-debug.log* |
| 41 | yarn-debug.log* |
| 42 | yarn-error.log* |
| 43 | |
| 44 | # Environment |
| 45 | .env |
| 46 | .env.* |
| 47 | |
| 48 | # Temporary files |
| 49 | *.tmp |
| 50 | *.temp |
| 51 | .cache/ |
| 52 | |
| 53 | # Examples and scripts |
| 54 | examples/ |
| 55 | bin/ |
| 56 | |
| 57 | # Other packages (we only need mcp-server) |
| 58 | packages/*/ |
| 59 | !packages/mcp-server/ |
| 60 | |