From ea8f95383ba93e0fa410dbe7e8cffd69d30fbcf2 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Tue, 23 May 2023 12:23:36 +0200 Subject: [PATCH] [common/hc] removeChannelIcons: TSify --- .gitattributes | 2 +- .../config/ext/removeChannelIcons.js | Bin 402 -> 0 bytes .../config/ext/removeChannelIcons.ts | Bin 0 -> 481 bytes common/hellcooling/config/package.json | 7 +++++++ common/hellcooling/config/pnpm-lock.yaml | 14 ++++++++++++++ common/hellcooling/config/tsconfig.json | 18 ++++++++++++++++++ 6 files changed, 40 insertions(+), 1 deletion(-) delete mode 100644 common/hellcooling/config/ext/removeChannelIcons.js create mode 100644 common/hellcooling/config/ext/removeChannelIcons.ts create mode 100644 common/hellcooling/config/package.json create mode 100644 common/hellcooling/config/pnpm-lock.yaml create mode 100644 common/hellcooling/config/tsconfig.json diff --git a/.gitattributes b/.gitattributes index 9c156ab..798e0e1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,3 @@ /script-resources/markdown2htmldoc/themes-out/**/* linguist-generated common/hellcooling/config/ext/** filter=git-crypt diff=git-crypt -common/hellcooling/config/*.json filter=git-crypt diff=git-crypt +common/hellcooling/config/discord*.json filter=git-crypt diff=git-crypt diff --git a/common/hellcooling/config/ext/removeChannelIcons.js b/common/hellcooling/config/ext/removeChannelIcons.js deleted file mode 100644 index b75383c43f3f9cc2c8b70c7723ba9e461539c6aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 402 zcmV;D0d4*OM@dveQdv+`0P$G*OHSG5gnA1yg&|{GZvRQ=l|q#yIB%7tW2sH`0wyV; zwpD-xsh)&$1>B59^z@5Dm&LnKmt|Zg!YM-D>v1QNJ_QJi6rqaBdA#u88fdEzA{5h< z)L`@}bpnFZXPz0Pf94sH@>o^%JB505Pu7+BFSo2UXq}nT?#?)TYB8Qpz%dc-a4in{ z8fBRjj}4FJS6$>};CZ9%L>QCxsS^_7O9@K0-tPlR%|G}>UlSJnG|__|H8|O(_elx+ zU2P_{I0+OXGL!gS=BvEq%f1%&@8M_XhUK^G%Aiwe&B$snqSVRN?2Q*1kx^%n=$eIk zZd`BEZhP$-_tstr0_e(9w@upvZUis8(gY-{}w2LQc#1 wt2MufF=TF>X5e9VIV5J=I`0gaGP&#?+Kk_D34Chcypjdyw{ZGX2hHe#Q)8pYS^xk5 diff --git a/common/hellcooling/config/ext/removeChannelIcons.ts b/common/hellcooling/config/ext/removeChannelIcons.ts new file mode 100644 index 0000000000000000000000000000000000000000..40973948c3b1e97782d60f6cb09d742ff080228d GIT binary patch literal 481 zcmV<70UrJUM@dveQdv+`0BT?oauTY8=5i*N$tzVSGI3@8Tw-V{LZ`FN-;jo+zM8{J z5MJ`tO>IeaO*?0R=&GyR`e&03xn2CpR@t05$4P-~b10YiY+LtbY+MR9yAm(n6lDmA zo)43Vh%q2$r&H9zKb<)+3%js`-efX@uZ^E&0`C?lAJQ2TQ2081?iyB!VL-`^jnq^? zy-w1bvw+SBiN$WerU0`aKLpyc%aISxXZj>1H-UiAHBb)F6jfh}B&40A)Cz{Kr1O`p ziDoqa>*cC)d0{acePWqH*zZX3KfIsW2B+$?qRt^+Ls;qD=ng$KOiU6~ON2jFs}p4D zWW1P=UbqXn!DUB@^anZpy06XrGl!J~Y<+u;I4kwVEJ|V=wc{7zQtO z&Sb@4Qe$^za<$7AOl5I$r(dwJS5+(LD#T>Tgi|6B*A3jU6~EZJiE8TC>aD44>W*rN zRol?w$dEFhlzC27g+yL2^QgM7g%RFv!r*y$BSSoDiD*nryDo%HJqtgY8VjdOdZn%8 zV0)%+R;XCezFckP>|=iDCMqlF0{vGA5;biG9AIalWeLMd+K^`r=12.20'} + hasBin: true + dev: false diff --git a/common/hellcooling/config/tsconfig.json b/common/hellcooling/config/tsconfig.json new file mode 100644 index 0000000..3cc5209 --- /dev/null +++ b/common/hellcooling/config/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "commonjs", + "allowJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "noEmit": true, + "jsx": "react", + "paths": { + "@hh/*": ["/Users/alyxia/Documents/gitrepos/hh3/types/*"], + "@hh/ext/*": ["/Users/alyxia/Documents/gitrepos/hh3/ext/*"] + }, + "typeRoots": ["/Users/alyxia/Documents/gitrepos/hh3/types"] + }, + "include": ["./ext/**/*"] +}