File tree Expand file tree Collapse file tree 1 file changed +51
-6
lines changed Expand file tree Collapse file tree 1 file changed +51
-6
lines changed Original file line number Diff line number Diff line change
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 /
1
45
build /
2
- node_modules /
3
- coverage /
4
- npm-debug.log
5
- .vscode /
6
- .idea /
7
- .nyc_output /
46
+ tmp /
47
+ out-tsc /
48
+ temp
49
+
50
+ # Files for playing around locally
51
+ playground.ts
52
+ playground.js
You can’t perform that action at this time.
0 commit comments