1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Add a couple links to the latest TIL

This commit is contained in:
jbranchaud
2023-06-15 15:02:05 -05:00
parent 72e3d551f3
commit 7da6d33f9d

View File

@@ -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)