-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitignore
125 lines (110 loc) · 2.32 KB
/
.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Ignore the root bin directory since it generally contains build byproducts. If you want any wrapper scripts, be sure to exclude normal build files in the same directory.
bin
# but do NOT ignore
!bin/prepare-prod-release-pr.sh
!bin/create_release.sh
!bin/download_deploy.sh
# Ignore
.tmp
out
# Other build byproducts
*.pid
local_mode_test.log
coverage.txt
.idea/
# ignore the vendor folder
vendor/*
!vendor/vendor.json
# ignore pacts folders
/pact/
/test/pact/logs/
**/.terraform/*
terraform.d
# .tfstate files
*.tfstate
*.tfstate.*
*.hcl
**/terraform.tfout
# Chart dependencies
**/charts/*.tgz
charts/package/
# servicebot workdir
.servicebot/
# Typescript Specifics
node_modules/
.node_modules/
built/*
tests/cases/rwc/*
tests/cases/perf/*
!tests/cases/webharness/compilerToString.js
test-args.txt
~*.docx
\#*\#
.\#*
tests/baselines/local/*
tests/baselines/local.old/*
tests/services/baselines/local/*
tests/baselines/prototyping/local/*
tests/baselines/rwc/*
tests/baselines/reference/projectOutput/*
tests/baselines/local/projectOutput/*
tests/baselines/reference/testresults.tap
tests/services/baselines/prototyping/local/*
tests/services/browser/typescriptServices.js
src/harness/*.js
src/compiler/diagnosticInformationMap.generated.ts
src/compiler/diagnosticMessages.generated.json
src/parser/diagnosticInformationMap.generated.ts
src/parser/diagnosticMessages.generated.json
rwc-report.html
*.swp
build.json
*.actual
tests/webTestServer.js
tests/webTestServer.js.map
tests/webhost/*.d.ts
tests/webhost/webtsc.js
tests/cases/**/*.js
tests/cases/**/*.js.map
*.config
scripts/eslint/built/
scripts/debug.bat
scripts/run.bat
scripts/**/*.js
scripts/**/*.js.map
coverage/
internal/
**/.DS_Store
.settings
**/.vs
**/.vscode/*
!**/.vscode/tasks.json
!**/.vscode/settings.template.json
!**/.vscode/launch.template.json
!**/.vscode/extensions.json
**/.vscode-test/*
!tests/cases/projects/projectOption/**/node_modules
!tests/cases/projects/NodeModulesSearch/**/*
!tests/baselines/reference/project/nodeModules*/**/*
.idea
yarn.lock
yarn-error.log
.parallelperf.*
tests/baselines/reference/dt
.failed-tests
TEST-results.xml
.eslintcache
*v8.log
/lib/
src/graphql/sidecarGraphQL.d.ts
openapitools.json
test-results
.env
userdata
coverage.json
*-result.xml
# Ignore sidecar executables
bin/ide-sidecar-*-runner
# Ignore any certs or keys used for testing
*.key
*.pem