From 73c3abf18a4d5bc29abb693c39b211cabb5b7da1 Mon Sep 17 00:00:00 2001 From: Sadzurami Date: Wed, 4 Sep 2024 18:33:09 +0300 Subject: [PATCH 1/3] feat: don't create source-map files --- tsconfig.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a93145b..c417710 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,10 +7,8 @@ "esModuleInterop": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "inlineSourceMap": true, "skipLibCheck": true, - "declaration": true, - "declarationMap": true + "declaration": true }, "include": ["src"] } From e7c8ad2db8fab2805cc3111bdc4d8e4081887336 Mon Sep 17 00:00:00 2001 From: Sadzurami Date: Wed, 4 Sep 2024 18:35:46 +0300 Subject: [PATCH 2/3] feat: drop source code from final repo and add types prop --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b26ee29..3cd919e 100644 --- a/package.json +++ b/package.json @@ -20,9 +20,9 @@ "url": "https://github.com/DoctorMcKay/node-steam-session.git" }, "main": "dist/index.js", + "types": "dist/index.d.ts", "files": [ - "/dist", - "/src" + "dist" ], "scripts": { "prepare": "npm run build", From ffc472310cd6a66f58c63655b8ebdc258eec3e5a Mon Sep 17 00:00:00 2001 From: Sadzurami Date: Sun, 20 Oct 2024 17:27:01 +0300 Subject: [PATCH 3/3] Revert "feat: don't create source-map files" This reverts commit 73c3abf18a4d5bc29abb693c39b211cabb5b7da1. --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c417710..a93145b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,10 @@ "esModuleInterop": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, + "inlineSourceMap": true, "skipLibCheck": true, - "declaration": true + "declaration": true, + "declarationMap": true }, "include": ["src"] }