From 796349a442cf02a3d0b5a62a8ef646ce4f3e2663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Sun, 23 Feb 2020 09:47:22 +0700 Subject: [PATCH] fix: Re-export TypeScript namespace (#1217) Closes #1213 --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index 84122205a..f4adbf0af 100644 --- a/src/index.ts +++ b/src/index.ts @@ -44,3 +44,6 @@ export { } from './lib/utils/options'; export { JSONOutput } from './lib/serialization'; + +import * as TypeScript from 'typescript'; +export { TypeScript };