diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 03:12:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:12:33 +0200 |
commit | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (patch) | |
tree | c2da4f3be185c144855f6bf9412610363842f413 /docs/getting_started | |
parent | 13b5cc7673329463a34ce0a315a06423f909ec58 (diff) |
docs: update GitHub doc links to use $CLI_VERSION (#7710)
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/typescript.md | 2 |
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`. |