From 8bf8b81d9a303c40b977d23a5156338db49afcbc Mon Sep 17 00:00:00 2001 From: smac89 <8305511+smac89@users.noreply.github.com> Date: Mon, 20 Nov 2023 19:52:46 -0600 Subject: [PATCH] fix lint checks --- src/index.d.ts => index.d.ts | 0 package.json | 2 +- tests/tsconfig.json | 3 ++- tsconfig.json | 3 ++- 4 files changed, 5 insertions(+), 3 deletions(-) rename src/index.d.ts => index.d.ts (100%) diff --git a/src/index.d.ts b/index.d.ts similarity index 100% rename from src/index.d.ts rename to index.d.ts diff --git a/package.json b/package.json index 2f9799f..cedd58c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "scripts": { "watch": "ncc build src/index.ts --watch", "build": "ncc build src/index.ts --license LICENSE --minify --out lib", - "lint": "ts-standard && tsc && tsc -p ./tests", + "lint": "tsc && tsc -p ./tests", "format": "prettier --write .", "test": "jest" }, diff --git a/tests/tsconfig.json b/tests/tsconfig.json index a0da9a7..201ae25 100644 --- a/tests/tsconfig.json +++ b/tests/tsconfig.json @@ -6,6 +6,7 @@ "moduleResolution": "Node" }, "include": [ - "*.ts" + "*.ts", + "../index.d.ts" ] } diff --git a/tsconfig.json b/tsconfig.json index d2853b4..6a9902d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,6 +26,7 @@ }, "include": [ "src/**/*.ts", - "jest.config.ts" + "jest.config.ts", + "index.d.ts" ] }