Skip to content
This repository was archived by the owner on Jul 31, 2020. It is now read-only.

Commit 482354a

Browse files
build: add gitignore from other projects
1 parent 13084da commit 482354a

File tree

1 file changed

+51
-2
lines changed

1 file changed

+51
-2
lines changed

.gitignore

+51-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
# Log files
2+
logs
3+
*.log
4+
*.tmp
5+
*.tmp.*
6+
log.txt
7+
npm-debug.log*
8+
9+
# Testing output
10+
lib-cov/**
11+
coverage/**
12+
13+
# Environment files
14+
.env
15+
16+
# Dependency directories
17+
node_modules
18+
19+
# MacOS related files
20+
*.DS_Store
21+
.AppleDouble
22+
.LSOverride
23+
._*
24+
UserInterfaceState.xcuserstate
25+
26+
# Windows related files
27+
Thumbs.db
28+
Desktop.ini
29+
$RECYCLE.BIN/
30+
31+
# IDE - Sublime
32+
*.sublime-project
33+
*.sublime-workspace
34+
35+
# IDE - VSCode
36+
.vscode/**
37+
!.vscode/tasks.json
38+
!.vscode/launch.json
39+
40+
# IDE - IntelliJ
41+
.idea
42+
43+
# Compilation output folders
44+
dist/
145
build/
2-
node_modules/
3-
npm-debug.log
46+
tmp/
47+
out-tsc/
48+
temp
49+
50+
# Files for playing around locally
51+
playground.ts
52+
playground.js

0 commit comments

Comments
 (0)