Files
wasm-overhead-research/.gitignore
Tristan Cartledge 226aa9283a Initial commit: JavaScript to WebAssembly compilation comparison
- 5 different JS-to-WASM implementations analyzed
- QuickJS (283KB) and Javy Static (519KB) are Wasmer-compatible
- Comprehensive size analysis and runtime compatibility testing
- Complete documentation and build automation
- Wasmer v6.1.0-rc.2 dynamic linking analysis included
2025-08-18 13:51:20 +10:00

99 lines
1.0 KiB
Plaintext

# WASM Build Artifacts
*.wasm
*.cwasm
*.wasm.gz
# Go Build Artifacts
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
go.work
# Rust Build Artifacts
/target/
**/**/target/
Cargo.lock
*.pdb
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
package-lock.json
yarn.lock
pnpm-lock.yaml
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE and Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Temporary files
*.tmp
*.temp
*.log
# Test coverage
coverage/
*.lcov
# Build directories
build/
dist/
out/
# Cache directories
.cache/
.parcel-cache/
# Wasmer cache
.wasmer/
# TinyGo cache
.tinygo-cache/
# Optimization artifacts
*_opt.wasm
*_optimized.wasm
# Compressed files (keep source, ignore generated)
*.gz
*.bz2
*.xz
# Benchmark results
benchmark-results/
*.bench
# Documentation build artifacts
docs/_build/
site/
# Local development
local/
scratch/
tmp/