From 7da6d33f9d1d11e1c04cdad74e4dca79115b3559 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 15 Jun 2023 15:02:05 -0500 Subject: [PATCH] Add a couple links to the latest TIL --- typescript/generate-an-initial-tsconfig-file.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/typescript/generate-an-initial-tsconfig-file.md b/typescript/generate-an-initial-tsconfig-file.md index 925aea0..55d2cbf 100644 --- a/typescript/generate-an-initial-tsconfig-file.md +++ b/typescript/generate-an-initial-tsconfig-file.md @@ -1,7 +1,8 @@ # Generate An Initial tsconfig File -A new `tsconfig.json` file can be generated using the `tsc` CLI which is part -of the `typescript` node package. +A new `tsconfig.json` file can be generated using [the `tsc` +CLI](https://www.typescriptlang.org/docs/handbook/compiler-options.html) which +is part of the `typescript` node package. You'll first want to add `typescript` to your project: @@ -46,3 +47,5 @@ annotations that looks something like this: } } ``` + +[source](https://stackoverflow.com/a/57510415/535590)