summaryrefslogtreecommitdiff
path: root/docs/getting_started/typescript.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 03:12:33 -0700
committerGitHub <noreply@github.com>2020-09-27 12:12:33 +0200
commitc28757f379fd1141c817b21ce2fe4dd86b29cd8c (patch)
treec2da4f3be185c144855f6bf9412610363842f413 /docs/getting_started/typescript.md
parent13b5cc7673329463a34ce0a315a06423f909ec58 (diff)
docs: update GitHub doc links to use $CLI_VERSION (#7710)
Diffstat (limited to 'docs/getting_started/typescript.md')
-rw-r--r--docs/getting_started/typescript.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started/typescript.md b/docs/getting_started/typescript.md
index ee799f844..47f7505b4 100644
--- a/docs/getting_started/typescript.md
+++ b/docs/getting_started/typescript.md
@@ -33,7 +33,7 @@ To export a type in a different file use
`import type` and `export type` where necessary by setting the `isolatedModules`
TypeScript compiler option to `true`, and the `importsNotUsedAsValues` to
`error`. You can see an example `tsconfig.json` with this option
-[in the standard library](https://github.com/denoland/deno/blob/master/std/tsconfig_test.json).
+[in the standard library](https://github.com/denoland/deno/blob/$CLI_VERSION/std/tsconfig_test.json).
These settings will be enabled by default in the future. They are already the
default in Deno 1.4 or above when using `--unstable`.