增加性能测试

This commit is contained in:
YHH
2025-06-07 21:28:31 +08:00
parent 499cbf8a60
commit 50420f9052
9 changed files with 794 additions and 28 deletions

87
source/.gitignore vendored
View File

@@ -1,34 +1,85 @@
# 编译输出目录
bin/
# 依赖
node_modules/
# 日志文件
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# 环境文件
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# 编辑器配置
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# TypeScript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# next.js build output
.next
# Build output
bin/
dev-bin/
# IDE
.vscode/
.idea/
*.swp
*.swo
# 操作系统文件
# OS
.DS_Store
Thumbs.db
# 测试覆盖率
coverage/
# Environment files
.env.local
.env.development.local
.env.test.local
.env.production.local
# 临时文件
# Temporary files
*.tmp
*.temp