Merge pull request #3 from webbertakken/patch-2
chore: adapt .gitignore to include most common node things
This commit is contained in:
commit
c65b7b6796
|
@ -1,23 +1,40 @@
|
||||||
# npm node_modules
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
node_modules/
|
|
||||||
|
|
||||||
# dist folder
|
|
||||||
dist/
|
|
||||||
playground/dist/
|
|
||||||
|
|
||||||
# Mac DS_Store files
|
|
||||||
**/.DS_Store
|
|
||||||
|
|
||||||
# IDE
|
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
# dotenv locals
|
# Environment variables
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
/node_modules
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
/coverage
|
||||||
|
|
||||||
|
# Distributable
|
||||||
|
/build
|
||||||
|
/dist/
|
||||||
|
/playground/dist/
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Env
|
||||||
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
|
# Node
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
# TypeScript cache
|
# TypeScript cache
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
|
|
||||||
# Bitburner type definitions
|
# Netscript definitions is pulled automatically
|
||||||
**/NetscriptDefinitions.d.ts
|
NetScriptDefinitions.d.ts
|
||||||
|
|
Loading…
Reference in New Issue