forked from codeoverflow-org/nodecg-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
55 lines (40 loc) · 889 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# node dependencies
node_modules/
# compiled js files
*.js
# generated mapping files
*.js.map
# generated type definitions
*.d.ts
# generated source mapping files
*.d.ts.map
# generated build info
*.tsbuildinfo
# Coverage reports by jest
coverage
# Dashboard bundle output from esbuild
dist/
# Esbuild config
!utils/nodecg-io-esbuild/esbuild.config.js
# Editor configuration
.idea/
.vscode/*
# Launch configurations and settings
!/.vscode/launch.json
!/.vscode/tasks.json
!/.vscode/settings.json
# Configuration of prettier and ESLint
!.eslintrc.js
!.prettierrc.js
.eslintcache
# Configuration of jest
!jest.config.js
# Documentation
docs/
# nodecg-io-cli install details. Created when installing development version using nodecg-io install.
install.json
# Autogenerated tsconfig.json files
/tsconfig.json
/samples/tsconfig.json
/services/tsconfig.json
/utils/tsconfig.json