revert last

This commit is contained in:
Holly Stubbs 2023-05-15 09:50:18 +01:00
parent ecaa8f28a6
commit 07fa9c0ecf
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
.github/*
enums/*
index.ts
readers/*
writers/*
# Logs
logs
*.log

View File

@ -1,6 +1,6 @@
{
"name": "bufferstuff",
"version": "1.1.2",
"version": "1.2.1",
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
@ -26,4 +26,4 @@
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}
}

View File

@ -1,12 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "CommonJS",
"moduleResolution": "node",
"target": "es6",
"esModuleInterop": true,
"resolveJsonModule": true,
"rootDir": "./",
"outDir": "./lib",
"outDir": "./lib/",
"strict": true,
"declaration": true
}