mirror of
https://github.com/denoland/deno.git
synced 2025-01-10 16:11:13 -05:00
docs: ts upgrade instructions to exclude some .d.ts files (#7638)
This commit is contained in:
parent
49807ac4ac
commit
8a6a390457
1 changed files with 2 additions and 2 deletions
4
cli/dts/README.md
vendored
4
cli/dts/README.md
vendored
|
@ -14,6 +14,6 @@ So that might look something like this:
|
|||
git clone https://github.com/microsoft/TypeScript.git
|
||||
cd typescript
|
||||
git checkout v3.9.7
|
||||
cp lib/typescript.js ~/src/deno/cli/tsc/00_typescript.js
|
||||
cp lib/*.d.ts ~/src/deno/cli/dts/
|
||||
rsync lib/typescript.js ~/src/deno/cli/tsc/00_typescript.js
|
||||
rsync --exclude=protocol.d.ts --exclude=tsserverlibrary.d.ts --exclude=typescriptServices.d.ts lib/*.d.ts ~/src/deno/cli/dts/
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue