40 lines
395 B
Plaintext
40 lines
395 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Dependencies
|
|
node_modules
|
|
viewer/node_modules
|
|
|
|
# Build output
|
|
viewer/dist
|
|
viewer/build
|
|
|
|
# IDE / Editor specific
|
|
.vscode
|
|
.idea
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Local env files
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|