From 07fa9c0ecf37c8237541338440cee2fb5203f66b Mon Sep 17 00:00:00 2001 From: Holly Date: Mon, 15 May 2023 09:50:18 +0100 Subject: [PATCH] revert last --- .npmignore | 6 ++++++ package.json | 4 ++-- tsconfig.json | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.npmignore b/.npmignore index c6bba59..22a7429 100644 --- a/.npmignore +++ b/.npmignore @@ -1,3 +1,9 @@ +.github/* +enums/* +index.ts +readers/* +writers/* + # Logs logs *.log diff --git a/package.json b/package.json index 5bcec7e..c7a3c30 100644 --- a/package.json +++ b/package.json @@ -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" } -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index 6d9eb1a..7876c2a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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 }