From 1d9fb6dfc3bed505f8d066b1ef873127b76add31 Mon Sep 17 00:00:00 2001 From: Andrew Bradley <cspotcode@gmail.com> Date: Fri, 21 Jan 2022 12:02:36 -0500 Subject: [PATCH] revert changes to readme; readme is built from docs/ --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 99080e5c6..d55198566 100644 --- a/README.md +++ b/README.md @@ -525,8 +525,6 @@ By default, **TypeScript Node** avoids compiling files in `/node_modules/` for t 2. Transpiling the entire dependency tree will make your project slower 3. Differing behaviours between TypeScript and node.js (e.g. ES2015 modules) can result in a project that works until you decide to support a feature natively from node.js -If you need to import uncompiled TypeScript code from a Node module, you can use the command line option `--skip-ignore` or the environment variable `TS_NODE_SKIP_IGNORE` to bypass this restriction. However, if a compiled javascript file already exists, the TypeScript file will never be re-compiled regardless of these options. - ## paths and baseUrl
 You can use ts-node together with [tsconfig-paths](https://www.npmjs.com/package/tsconfig-paths) to load modules according to the `paths` section in `tsconfig.json`.