From a8c4e68644f3bb6d9c2294e811c0dce4d51dcfbf Mon Sep 17 00:00:00 2001 From: LuciferHuang <784863142@qq.com> Date: Mon, 18 Mar 2024 21:19:00 +0800 Subject: [PATCH] fix: module path error --- package.json | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 50e5bea..26bf0b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "type-json-mapper", - "version": "1.2.8", + "version": "1.2.9", "description": "Instead of directly using api data, we definitely require an adapter layer to transform data as needed. Furthermore, the adapter inverse the the data dependency from API server(API Server is considered uncontrollable and highly unreliable as data structure may be edit by backend coder for some specific purposes)to our adapter which becomes reliable. Thus, this library is created as the adapter make use of es7 reflect decorator.", "license": "MIT", "author": "LuciferHuang", diff --git a/tsconfig.json b/tsconfig.json index a77357b..41c9c87 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -33,6 +33,6 @@ "dom" ] }, - "include": ["src/**/*", "tests/*"], + "include": ["src/**/*"], "exclude": ["node_modules"] }