Load tsconfig, respecting `TS_NODE_PROJECT` env var and `extends`
npm install tsconfig-loaderLoad tsconfig, respecting TS_NODE_PROJECT env var and "extends"
```
yarn add tsconfig-loader
`ts
import load from 'tsconfig-loader';
const result = load();
// => {tsConfigPath: 'path/to/tsconfig.json', tsConfig: {compilerOptions: {...}}}
``