From dc6c0b80f713ea792e7291b63ce3b4d2326ec394 Mon Sep 17 00:00:00 2001 From: Juri Date: Thu, 24 Mar 2022 10:04:25 +0100 Subject: [PATCH] docs(misc): add link to @nrwl/js getting started guide --- docs/shared/guides/js-and-ts.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/shared/guides/js-and-ts.md b/docs/shared/guides/js-and-ts.md index 542d457d3d7a9..1c440ccac6857 100644 --- a/docs/shared/guides/js-and-ts.md +++ b/docs/shared/guides/js-and-ts.md @@ -12,3 +12,7 @@ nx g @nrwl/react:component mycmp --project=myapp --js You can build/test/lint/serve your applications and libraries the same way whether you use JavaScript and TypeScript. You can also mix and match them. Regardless whether you use JavaScript or TypeScript, you will have a `tsconfig.base.json` file at the root of the workspace. **It's not used to build the applications and libraries in the workspace. It's only used to improve the editor experience.** + +## Interested in building and distributing TypeScript packages? + +You might want to check out the `@nrwl/js` package which comes with advanced TypeScript support, including [SWC](https://swc.rs/) and more. Find out more in the [Nx and TypeScript guide](/getting-started/nx-and-typescript).