Add to the ignored items for compilation
This commit is contained in:
parent
a61d7d315d
commit
5b134978c7
1 changed files with 5 additions and 1 deletions
6
tsc.ts
6
tsc.ts
|
|
@ -34,6 +34,7 @@ const ignore = [
|
||||||
'./config/updates.json$',
|
'./config/updates.json$',
|
||||||
'./config/cr_token.yml$',
|
'./config/cr_token.yml$',
|
||||||
'./config/funi_token.yml$',
|
'./config/funi_token.yml$',
|
||||||
|
'./config/new_hd_token.yml$',
|
||||||
'./config/hd_token.yml$',
|
'./config/hd_token.yml$',
|
||||||
'./config/hd_sess.yml$',
|
'./config/hd_sess.yml$',
|
||||||
'./config/hd_profile.yml$',
|
'./config/hd_profile.yml$',
|
||||||
|
|
@ -42,7 +43,10 @@ const ignore = [
|
||||||
'./fonts*',
|
'./fonts*',
|
||||||
'./gui/react*',
|
'./gui/react*',
|
||||||
'./dev.js$',
|
'./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'));
|
].map(a => a.replace(/\*/g, '[^]*').replace(/\.\//g, escapeRegExp(__dirname) + '/').replace(/\//g, path.sep === '\\' ? '\\\\' : '/')).map(a => new RegExp(a, 'i'));
|
||||||
|
|
||||||
export { ignore };
|
export { ignore };
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue