From 7083f05cf9c7fd243b23d15aa261a961130d3bad Mon Sep 17 00:00:00 2001 From: MaksimKiselev Date: Mon, 8 May 2023 08:29:52 +0300 Subject: [PATCH] fix: #231 Remove unnecessary files from package bundle --- .npmignore | 8 +++++--- tsconfig.json | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.npmignore b/.npmignore index a2b5ba83..2eeff844 100644 --- a/.npmignore +++ b/.npmignore @@ -5,10 +5,12 @@ node_modules src tests .editorconfig -.estlintcache -.estlintignore -.estlintrc.js +.eslintcache +.eslintignore +.eslintrc.js .prettierrc.js CHANGELOG.md commitlint.config.js REFERENCE.md +*.tsbuildinfo +tsconfig.json diff --git a/tsconfig.json b/tsconfig.json index e8c48e13..ddb15212 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "es2020", - "sourceMap": true, + "sourceMap": false, "outDir": "./lib", "baseUrl": "./", "incremental": true,