Updated package

This commit is contained in:
Sambo Chea 2023-05-27 11:22:40 +07:00
parent 430d052865
commit 6ff40cbe60
Signed by: sombochea
GPG Key ID: 3C7CF22A05D95490
3 changed files with 8 additions and 1 deletions

5
.npmignore Normal file
View File

@ -0,0 +1,5 @@
node_modules/
tests/
src/
jest.config.js
tsconfig.json

View File

@ -3,6 +3,7 @@
"version": "1.0.0",
"description": "A simple way to collect logs and send to the server via simple SDK.",
"main": "dist/index.js",
"private": false,
"dist": {
"type": "module",
"main": "dist/index.js",

View File

@ -5,7 +5,8 @@
"outDir": "dist",
"rootDir": "src",
"strict": true,
"types": ["jest"]
"types": ["jest"],
"declaration": true,
},
"include": ["src/**/*.ts"]
}