From 9457a5ed0f3ce79e9cb5a67b65e17d90a24084e7 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 17 May 2022 13:17:58 +0200 Subject: [PATCH] do not emit declaration files --- src/Umbraco.Web.UI.Client/tsconfig.json | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/tsconfig.json b/src/Umbraco.Web.UI.Client/tsconfig.json index 91a731fd86..90d860979a 100644 --- a/src/Umbraco.Web.UI.Client/tsconfig.json +++ b/src/Umbraco.Web.UI.Client/tsconfig.json @@ -1,10 +1,14 @@ { "compilerOptions": { "module": "esnext", - "lib": ["es2017", "dom", "dom.iterable"], + "lib": [ + "es2017", + "dom", + "dom.iterable" + ], "declaration": true, "emitDeclarationOnly": true, - "outDir": "./types", + "noEmitOnError": true, "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, @@ -18,6 +22,12 @@ "useDefineForClassFields": false, "skipLibCheck": true }, - "include": ["src/**/*.ts"], - "references": [{ "path": "./tsconfig.node.json" }] -} + "include": [ + "src/**/*.ts" + ], + "references": [ + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file