From 2aaa1a3fdc49be77aec5309dab5507865c38d392 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 21 Oct 2019 17:13:07 +0200 Subject: Use typescript paths in cli scripts too --- server/helpers/register-ts-paths.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 server/helpers/register-ts-paths.ts (limited to 'server/helpers') diff --git a/server/helpers/register-ts-paths.ts b/server/helpers/register-ts-paths.ts new file mode 100644 index 000000000..e8db369e3 --- /dev/null +++ b/server/helpers/register-ts-paths.ts @@ -0,0 +1,16 @@ +import { resolve } from 'path' +const tsConfigPaths = require('tsconfig-paths') + +const tsConfig = require('../../tsconfig.json') + +function registerTSPaths () { + // Thanks: https://github.com/dividab/tsconfig-paths/issues/75#issuecomment-458936883 + tsConfigPaths.register({ + baseUrl: resolve(tsConfig.compilerOptions.baseUrl || '', tsConfig.compilerOptions.outDir || ''), + paths: tsConfig.compilerOptions.paths + }) +} + +export { + registerTSPaths +} -- cgit v1.2.3