setup-msbuild/.gitignore

99 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-02-01 02:14:06 +07:00
# Dependency directory
2020-02-21 08:02:07 +07:00
# node_modules
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
# Logs
logs
2020-01-31 11:34:33 +07:00
*.log
2020-02-01 02:14:06 +07:00
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Runtime data
pids
*.pid
*.seed
*.pid.lock
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Coverage directory used by tools like istanbul
coverage
*.lcov
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# nyc test coverage
.nyc_output
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Bower dependency directory (https://bower.io/)
bower_components
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# node-waf configuration
.lock-wscript
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Dependency directories
jspm_packages/
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# TypeScript v1 declaration files
typings/
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# TypeScript cache
*.tsbuildinfo
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Optional npm cache directory
.npm
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Optional eslint cache
.eslintcache
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Optional REPL history
.node_repl_history
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Output of 'npm pack'
*.tgz
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Yarn Integrity file
.yarn-integrity
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# dotenv environment variables file
.env
.env.test
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# parcel-bundler cache (https://parceljs.org/)
.cache
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# next.js build output
.next
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# nuxt.js build output
.nuxt
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# vuepress build output
.vuepress/dist
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Serverless directories
.serverless/
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# FuseBox cache
.fusebox/
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# DynamoDB Local files
.dynamodb/
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# OS metadata
.DS_Store
Thumbs.db
2020-01-31 11:34:33 +07:00
2020-02-01 02:14:06 +07:00
# Ignore built ts files
__tests__/runner/*
lib/**/*