From 5b134978c7949c4fbf07fe6e93d8118091bf4165 Mon Sep 17 00:00:00 2001 From: AnimeDL Date: Sun, 17 Mar 2024 11:10:05 -0700 Subject: [PATCH] Add to the ignored items for compilation --- tsc.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsc.ts b/tsc.ts index a62dc55..8b2eedd 100644 --- a/tsc.ts +++ b/tsc.ts @@ -34,6 +34,7 @@ const ignore = [ './config/updates.json$', './config/cr_token.yml$', './config/funi_token.yml$', + './config/new_hd_token.yml$', './config/hd_token.yml$', './config/hd_sess.yml$', './config/hd_profile.yml$', @@ -42,7 +43,10 @@ const ignore = [ './fonts*', './gui/react*', './dev.js$', - '*/node_modules/*' + '*/node_modules/*', + './widevine/*', + './videos/*', + './logs/*', ].map(a => a.replace(/\*/g, '[^]*').replace(/\.\//g, escapeRegExp(__dirname) + '/').replace(/\//g, path.sep === '\\' ? '\\\\' : '/')).map(a => new RegExp(a, 'i')); export { ignore };