From 0306751f993fd0f3a2a92cdaeadfecafa915f992 Mon Sep 17 00:00:00 2001 From: Toast <96593068+AnxietyisReal@users.noreply.github.com> Date: Mon, 7 Aug 2023 01:17:40 +1000 Subject: [PATCH] Remove `node_modules` directory --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 26de21f..4d5971f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,8 +12,8 @@ "rootDir": "src/", "outDir": "dist/", "moduleResolution": "bundler", - "typeRoots": [ "node_modules/@types", "./src/typings" ], + "typeRoots": [ "./src/typings" ], }, - "include": [ "node_modules/@types", "src/" ], - "exclude": [ "node_modules", ".git", "src/config.json", "src/DB-Beta.config.json", "src/Toast-Testbot.config.json" ], + "include": [ "src/" ], + "exclude": [ ".yarn/cache", ".yarn/unplugged",".git", "src/config.json", "src/DB-Beta.config.json", "src/Toast-Testbot.config.json" ] }