From 215f35b695083fc4dfb010b0f8d66ac0835fddcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Loren=20=E2=98=BA=EF=B8=8F?= <251288+lorensr@users.noreply.github.com> Date: Sat, 6 Jul 2019 02:09:52 -0400 Subject: [PATCH] Remove broken links to deleted TypeScript guide Fixes #991 --- content/build-tool.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/build-tool.md b/content/build-tool.md index 7805bd72..e4c7503f 100644 --- a/content/build-tool.md +++ b/content/build-tool.md @@ -65,10 +65,6 @@ meteor add barbatus:typescript It is necessary to configure the TypeScript compiler with a `tsconfig.json` file. -A complete guide on installation, configuration, and usage of TypeScript, and how type definitions for libraries are installed, can be found [here](https://medium.com/@birkskyum/modern-meteor-development-with-typescript-introduction-836f2a89f79). - -The guide also includes sample applications created with Angular, React, Vue, and Blazeā€”all written in TypeScript. See the code [here](https://github.com/birkskyum/meteor-typescript-samples). -

Conditional imports

TypeScript does not support nested `import` statements, therefore conditionally importing modules requires you to use the `require` statement (see [Using `require`](https://guide.meteor.com/structure.html#using-require)).