You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+13
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,19 @@ Your pull request should:
32
32
* Follow the code conventions descriped in [Coding guidelines](https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines)
33
33
* To avoid line ending issues, set `autocrlf = input` and `whitespace = cr-at-eol` in your git configuration
34
34
35
+
## Contributing `lib.d.ts` fixes
36
+
37
+
The library sources are in: [src\lib\](https://github.com/Microsoft/TypeScript/tree/master/src/lib)
38
+
39
+
To build the library files, run
40
+
```Shell
41
+
jake lib
42
+
```
43
+
44
+
`src\lib\dom.generated.d.ts` and `webworker.generated.d.ts`:
45
+
46
+
These two files represent the DOM typings and are auto-generated. To make any modifications to them, please update the generation script in https://github.com/Microsoft/TSJS-lib-generator
47
+
35
48
## Running the Tests
36
49
37
50
To run all tests, invoke the `runtests` target using jake:
0 commit comments