From 1cd479751fb00a5a2815340495944c67704cbb70 Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 15 Jul 2022 00:11:28 +0200 Subject: [PATCH] Set --tsconfig "./src/tsconfig.app.json" in package.json --- package.json | 2 +- tsconfig.json | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index dd53fbe0..70f228cd 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "generate-licenses-file": "yarn license-checker --production --csv --out licenses.csv", "prebuildforelectron": "node set-variables-in-env.js --set src/environments/environment.electron.prod.ts", "postbuildforelectron": "node set-variables-in-env.js --unset src/environments/environment.electron.prod.ts", - "postinstall": "ngcc --properties es5 browser module main --first-only --create-ivy-entry-points && ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points", + "postinstall": "ngcc --properties es5 browser module main --first-only --create-ivy-entry-points --tsconfig \"./src/tsconfig.app.json\" && ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points --tsconfig \"./src/tsconfig.app.json\"", "snyk-protect": "snyk-protect", "prepare": "yarn run snyk-protect" }, diff --git a/tsconfig.json b/tsconfig.json index 137dfd94..343f21cd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,9 +12,6 @@ }, { "path": "./src/tsconfig.spec.json" - }, - { - "path": "tsconfig.base.json" } ] -} \ No newline at end of file +}