mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 18:50:56 +08:00
- Added support for TypeScript incremental builds by enabling the `incremental` option and specifying the `tsBuildInfoFile` in both `tsconfig.node.json` and `tsconfig.web.json`. - Updated the `typecheck` script in `package.json` to use `concurrently` for running node and web type checks in parallel. - Added `.tsbuildinfo` to `.gitignore` to prevent build info files from being tracked.
71 lines
730 B
Plaintext
71 lines
730 B
Plaintext
# Logs
|
|
logs
|
|
*.log*
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
.yarn-cache
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Yarn
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
|
|
# Project
|
|
node_modules
|
|
dist
|
|
out
|
|
mcp_server
|
|
stats.html
|
|
|
|
# ENV
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local
|
|
local
|
|
.aider*
|
|
.cursorrules
|
|
.cursor/*
|
|
.claude/*
|
|
.gemini/*
|
|
.qwen/*
|
|
.trae/*
|
|
.claude-code-router/*
|
|
CLAUDE.local.md
|
|
|
|
# vitest
|
|
coverage
|
|
.vitest-cache
|
|
vitest.config.*.timestamp-*
|
|
|
|
# TypeScript incremental build
|
|
.tsbuildinfo
|
|
|
|
# playwright
|
|
playwright-report
|
|
test-results
|
|
|
|
YOUR_MEMORY_FILE_PATH
|