add types property to package.json

This commit is contained in:
2023-09-14 23:04:56 -05:00
parent 748b5f3136
commit f1050ab7fd
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@jwetzell/posistagenet",
"version": "0.4.0",
"version": "0.4.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@jwetzell/posistagenet",
"version": "0.4.0",
"version": "0.4.1",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.6.0",
+2 -1
View File
@@ -1,8 +1,9 @@
{
"name": "@jwetzell/posistagenet",
"version": "0.4.0",
"version": "0.4.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
+1 -2
View File
@@ -2,9 +2,8 @@
"compilerOptions": {
"esModuleInterop": true,
"module": "commonjs",
"target": "es2016",
"target": "ES2020",
"declaration": true,
"moduleResolution": "node",
"rootDir": "./src",
"strict": true,
"outDir": "dist"