From 4feafba99bf354276eae59b62f8321e06118c6a2 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Sun, 19 Jun 2022 12:58:27 -0600 Subject: [PATCH] Add the stripInternal option --- common/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/tsconfig.json b/common/tsconfig.json index cc0605b..98480f6 100644 --- a/common/tsconfig.json +++ b/common/tsconfig.json @@ -67,7 +67,9 @@ /* Advanced Options */ "skipLibCheck": true, /* Skip type checking of declaration files. */ - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + "forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ + + "stripInternal": true }, "include": [ "src/**/*" ] }