From 1aa3e2b8ac34be3570440b26470915d66a1a1da2 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Thu, 23 Jun 2022 11:39:08 -0600 Subject: [PATCH] Strip Internal API definitions --- server/tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index ce11146..fd8ba4a 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -15,7 +15,7 @@ "sourceMap": true, /* Generates corresponding '.map' file. */ // "outFile": "./", /* Concatenate and emit output to single file. */ "outDir": "./dist", /* Redirect output structure to the directory. */ - // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ // "composite": true, /* Enable project compilation */ // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ "removeComments": true, /* Do not emit comments to output. */ @@ -69,7 +69,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 }, "exclude": [ "**/*.spec.ts"