Skip to content

Commit 855cc2e

Browse files
authoredFeb 25, 2022
Setup tsconfig to enable global tsc watch (#4435)
1 parent 7142d10 commit 855cc2e

File tree

110 files changed

+764
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+764
-374
lines changed
 

‎.gitattributes

+2-41
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,2 @@
1-
*.bmp binary
2-
*.dll binary
3-
*.gif binary
4-
*.jpg binary
5-
*.png binary
6-
*.snk binary
7-
*.exe binary
8-
*.wmv binary
9-
*.mp4 binary
10-
*.ismv binary
11-
*.isma binary
12-
13-
*.ascx text
14-
*.cmd text
15-
*.config text
16-
*.cs text diff=csharp
17-
*.csproj text merge=union
18-
*.edmx text
19-
20-
*.htm text
21-
*.html text
22-
23-
*.json text eol=lf
24-
*.ts text eol=lf
25-
*.txt text eol=lf
26-
27-
*.msbuild text
28-
*.nuspec text
29-
30-
*.resx text
31-
*.ruleset text
32-
*.StyleCop text
33-
*.targets text
34-
*.txt text
35-
*.xml text
36-
37-
*.sln text eol=crlf merge=union
38-
39-
shrinkwrap.yaml merge=binary
40-
npm-shrinkwrap.json merge=binary
41-
yarn.lock merge=binary
1+
# Use unix line endings always, even on Windows
2+
* text=auto eol=lf

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -294,3 +294,5 @@ common/config/rush/shrinkwrap.yaml
294294
core/test/regression
295295
regression-tests/output
296296

297+
# TS incremental build cache
298+
*.tsbuildinfo

0 commit comments

Comments
 (0)
Please sign in to comment.