|
1 |
| -# Created by https://www.gitignore.io/api/angular,visualstudiocode |
2 |
| -# Edit at https://www.gitignore.io/?templates=angular,visualstudiocode |
3 |
| - |
4 |
| -### Angular ### |
5 |
| -## Angular ## |
6 |
| -# compiled output |
7 |
| -dist/ |
8 |
| -tmp/ |
9 |
| -app/**/*.js |
10 |
| -app/**/*.js.map |
11 |
| - |
12 |
| -# dependencies |
| 1 | +# Created by https://www.toptal.com/developers/gitignore/api/node,vscode |
| 2 | +# Edit at https://www.toptal.com/developers/gitignore?templates=node,vscode |
| 3 | + |
| 4 | +### Node ### |
| 5 | +# Logs |
| 6 | +logs |
| 7 | +*.log |
| 8 | +npm-debug.log* |
| 9 | +yarn-debug.log* |
| 10 | +yarn-error.log* |
| 11 | +lerna-debug.log* |
| 12 | + |
| 13 | +# Diagnostic reports (https://nodejs.org/api/report.html) |
| 14 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
| 15 | + |
| 16 | +# Runtime data |
| 17 | +pids |
| 18 | +*.pid |
| 19 | +*.seed |
| 20 | +*.pid.lock |
| 21 | + |
| 22 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 23 | +lib-cov |
| 24 | + |
| 25 | +# Coverage directory used by tools like istanbul |
| 26 | +coverage |
| 27 | +*.lcov |
| 28 | + |
| 29 | +# nyc test coverage |
| 30 | +.nyc_output |
| 31 | + |
| 32 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 33 | +.grunt |
| 34 | + |
| 35 | +# Bower dependency directory (https://bower.io/) |
| 36 | +bower_components |
| 37 | + |
| 38 | +# node-waf configuration |
| 39 | +.lock-wscript |
| 40 | + |
| 41 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 42 | +build/Release |
| 43 | + |
| 44 | +# Dependency directories |
13 | 45 | node_modules/
|
14 |
| -bower_components/ |
15 |
| - |
16 |
| -# IDEs and editors |
17 |
| -.idea/ |
18 |
| - |
19 |
| -# misc |
20 |
| -.sass-cache/ |
21 |
| -connect.lock/ |
22 |
| -coverage/ |
23 |
| -libpeerconnection.log/ |
24 |
| -npm-debug.log |
25 |
| -testem.log |
| 46 | +jspm_packages/ |
| 47 | + |
| 48 | +# TypeScript v1 declaration files |
26 | 49 | typings/
|
27 | 50 |
|
28 |
| -# e2e |
29 |
| -e2e/*.js |
30 |
| -e2e/*.map |
| 51 | +# TypeScript cache |
| 52 | +*.tsbuildinfo |
| 53 | + |
| 54 | +# Optional npm cache directory |
| 55 | +.npm |
| 56 | + |
| 57 | +# Optional eslint cache |
| 58 | +.eslintcache |
| 59 | + |
| 60 | +# Microbundle cache |
| 61 | +.rpt2_cache/ |
| 62 | +.rts2_cache_cjs/ |
| 63 | +.rts2_cache_es/ |
| 64 | +.rts2_cache_umd/ |
31 | 65 |
|
32 |
| -#System Files |
33 |
| -.DS_Store/ |
| 66 | +# Optional REPL history |
| 67 | +.node_repl_history |
34 | 68 |
|
35 |
| -### VisualStudioCode ### |
| 69 | +# Output of 'npm pack' |
| 70 | +*.tgz |
| 71 | + |
| 72 | +# Yarn Integrity file |
| 73 | +.yarn-integrity |
| 74 | + |
| 75 | +# dotenv environment variables file |
| 76 | +.env |
| 77 | +.env.test |
| 78 | +.env*.local |
| 79 | + |
| 80 | +# parcel-bundler cache (https://parceljs.org/) |
| 81 | +.cache |
| 82 | +.parcel-cache |
| 83 | + |
| 84 | +# Next.js build output |
| 85 | +.next |
| 86 | + |
| 87 | +# Nuxt.js build / generate output |
| 88 | +.nuxt |
| 89 | +dist |
| 90 | + |
| 91 | +# Gatsby files |
| 92 | +.cache/ |
| 93 | +# Comment in the public line in if your project uses Gatsby and not Next.js |
| 94 | +# https://nextjs.org/blog/next-9-1#public-directory-support |
| 95 | +# public |
| 96 | + |
| 97 | +# vuepress build output |
| 98 | +.vuepress/dist |
| 99 | + |
| 100 | +# Serverless directories |
| 101 | +.serverless/ |
| 102 | + |
| 103 | +# FuseBox cache |
| 104 | +.fusebox/ |
| 105 | + |
| 106 | +# DynamoDB Local files |
| 107 | +.dynamodb/ |
| 108 | + |
| 109 | +# TernJS port file |
| 110 | +.tern-port |
| 111 | + |
| 112 | +# Stores VSCode versions used for testing VSCode extensions |
| 113 | +.vscode-test |
| 114 | + |
| 115 | +### vscode ### |
36 | 116 | .vscode/*
|
37 | 117 | !.vscode/settings.json
|
38 | 118 | !.vscode/tasks.json
|
39 | 119 | !.vscode/launch.json
|
40 | 120 | !.vscode/extensions.json
|
| 121 | +*.code-workspace |
41 | 122 |
|
42 |
| -### VisualStudioCode Patch ### |
43 |
| -# Ignore all local history of files |
44 |
| -.history |
45 |
| - |
46 |
| -# End of https://www.gitignore.io/api/angular,visualstudiocode |
| 123 | +# End of https://www.toptal.com/developers/gitignore/api/node,vscode |
0 commit comments