45 lines
478 B
Plaintext
45 lines
478 B
Plaintext
# Specifies intentionally untracked files to ignore when using Git
|
|
# http://git-scm.com/docs/gitignore
|
|
|
|
# OSX
|
|
.DS_STORE
|
|
.DS_Store
|
|
._*
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
*.log*
|
|
|
|
# package managers
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
#!.yarn/cache
|
|
.pnp.*
|
|
node_modules
|
|
package-lock.json
|
|
|
|
# Build
|
|
dist
|
|
*.tsbuildinfo
|
|
*.map
|
|
*.d.ts
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
|
|
.tmp
|
|
|
|
.wireit
|
|
|
|
.eslintcache
|