TS 构建缓存
掌握 tsbuildinfo、临时声明文件与生成目录的忽略技巧。
Explore resourceProfessional .gitignore tools
Typescript project template
Using GitIgnore.pro fallback template because the official template was unavailable during generation.
# TypeScript build info
*.tsbuildinfo
# Build output
dist/
lib/
esm/
# Coverage & tests
coverage/
playwright-report/
cypress/videos/
cypress/screenshots/
# Tool caches
.eslintcache
.parcel-cache/
.rpt2_cache/
.ts-node-cache/.gitignore in your project root掌握 tsbuildinfo、临时声明文件与生成目录的忽略技巧。
Explore resource与 Monorepo 架构结合,隔离包级 dist/ 与测试产物。
Explore resource用 Validator 检查 TSC 产物是否被成功忽略。
Explore resource一次性涵盖编译、测试、打包的忽略规则。