Skip to content

Commit

Permalink
chore: fix linters failing due to relative typescript include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
FreekVR committed Apr 15, 2024
1 parent 49e8096 commit 6c3ae40
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 6c3ae40

Please sign in to comment.