From b400714fccba05c913bd738bdc449ee539ac0788 Mon Sep 17 00:00:00 2001 From: Evert Pot Date: Mon, 15 Jan 2024 00:25:03 -0500 Subject: [PATCH] Fix incorrect tsconfig change and lint --- test/util.ts | 4 ++-- tsconfig.json | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/test/util.ts b/test/util.ts index 36a848d..197af9f 100644 --- a/test/util.ts +++ b/test/util.ts @@ -69,8 +69,8 @@ describe('validateFile', () => { ); await assertReject( // File doesn't exist - validateFile(`${staticDir}/test.nope`, staticDir), - NotFound + validateFile(`${staticDir}/test.nope`, staticDir), + NotFound ); await assertReject( // Nested directory diff --git a/tsconfig.json b/tsconfig.json index 63c2b99..a00d825 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,7 +22,6 @@ "declaration": true }, "include": [ - "src/**/*", - "test/**/*", + "src/**/*" ] }