compile ts

This commit is contained in:
Cat /dev/Nulo 2023-05-16 19:30:11 -03:00
parent dd6c719809
commit 558a42b7c2
2 changed files with 7 additions and 4 deletions

View file

@ -2,9 +2,11 @@
"name": "@nulo/isogit-lfs", "name": "@nulo/isogit-lfs",
"version": "0.2.7", "version": "0.2.7",
"description": "LFS helpers for Isomorphic Git", "description": "LFS helpers for Isomorphic Git",
"main": "src/index.ts", "main": "dist/index.js",
"repository": "git@github.com:riboseinc/isogit-lfs.git", "repository": "git@github.com:riboseinc/isogit-lfs.git",
"scripts": {}, "scripts": {
"prepublish": "tsc"
},
"author": { "author": {
"name": "Ribose Inc.", "name": "Ribose Inc.",
"email": "open.source@ribose.com" "email": "open.source@ribose.com"

View file

@ -5,7 +5,6 @@
"moduleResolution": "node", "moduleResolution": "node",
"strict": true, "strict": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noImplicitReturns": true, "noImplicitReturns": true,
@ -17,6 +16,8 @@
"newLine": "lf", "newLine": "lf",
"declaration": true "declaration": true,
"outDir": "dist/"
} }
} }