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 --- types/tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 types/tsconfig.json (limited to 'types/tsconfig.json') diff --git a/types/tsconfig.json b/types/tsconfig.json new file mode 100644 index 000000000..8f09c4a83 --- /dev/null +++ b/types/tsconfig.json @@ -0,0 +1,23 @@ +{ + "extends": "../tsconfig.base.json", + "compilerOptions": { + "stripInternal": true, + "removeComments": false, + "emitDeclarationOnly": true, + "outDir": "./dist/", + "baseUrl": "./src/", + "rootDir": "./src/", + "paths": { + "@server/*": [ "../../server/*" ], + "@shared/*": [ "../../shared/*" ], + "@client/*": [ "../../client/src/*" ], + } + }, + "references": [ + { "path": "../shared/tsconfig.types.json" }, + { "path": "../server/tsconfig.types.json" }, + { "path": "./src/client/tsconfig.json" } + ], + "files": ["./src/index.ts"], +} + -- cgit v1.2.3