From b8fa3e8c734a46918118afe7976f248cc883f675 Mon Sep 17 00:00:00 2001 From: lutangar Date: Tue, 9 Nov 2021 13:49:08 +0100 Subject: refactor(types): create dedicated folder for types package src fix guide examples and add types package readme refactor(tsconfig): move back base tsconfig to base directory --- server/tools/tsconfig.json | 1 + server/tsconfig.types.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'server') diff --git a/server/tools/tsconfig.json b/server/tools/tsconfig.json index 575133ec8..61e6b8739 100644 --- a/server/tools/tsconfig.json +++ b/server/tools/tsconfig.json @@ -7,5 +7,6 @@ "references": [ { "path": "../" }, ], + "files": [], "exclude": [ ] // Overwrite exclude property } diff --git a/server/tsconfig.types.json b/server/tsconfig.types.json index 26697bd45..824834066 100644 --- a/server/tsconfig.types.json +++ b/server/tsconfig.types.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "outDir": "../types/server", + "outDir": "../types/dist/server", "stripInternal": true, "removeComments": false, "emitDeclarationOnly": true -- cgit v1.2.3