From 6c3ae40fd16f80efec5c8d18210fa89085d1cc3a Mon Sep 17 00:00:00 2001 From: Freek van Rijt Date: Mon, 15 Apr 2024 12:40:38 +0200 Subject: [PATCH] chore: fix linters failing due to relative typescript include paths --- tsconfig.base.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 68b7acee..9d1d6538 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -33,15 +33,15 @@ ] }, "include": [ - "./*.cjs", - "./*.js", - "./*.mjs", - "./*.ts", - "./private/**/*", - "./src/**/*", - "./src/.vuepress/**/*", - "./test/**/*", - "./types/**/*" + "*.cjs", + "*.js", + "*.mjs", + "*.ts", + "private/**/*", + "src/**/*", + "src/.vuepress/**/*", + "test/**/*", + "types/**/*" ], "exclude": [ "**/.vuepress/.cache",