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 b75383c..0000000 Binary files a/common/hellcooling/config/ext/removeChannelIcons.js and /dev/null differ diff --git a/common/hellcooling/config/ext/removeChannelIcons.ts b/common/hellcooling/config/ext/removeChannelIcons.ts new file mode 100644 index 0000000..4097394 Binary files /dev/null and b/common/hellcooling/config/ext/removeChannelIcons.ts differ diff --git a/common/hellcooling/config/package.json b/common/hellcooling/config/package.json new file mode 100644 index 0000000..9db10a7 --- /dev/null +++ b/common/hellcooling/config/package.json @@ -0,0 +1,7 @@ +{ + "name": "-", + "description": "blblbl, blbl, wawawawa", + "dependencies": { + "typescript": "^5.0.4" + } +} diff --git a/common/hellcooling/config/pnpm-lock.yaml b/common/hellcooling/config/pnpm-lock.yaml new file mode 100644 index 0000000..4d24c70 --- /dev/null +++ b/common/hellcooling/config/pnpm-lock.yaml @@ -0,0 +1,14 @@ +lockfileVersion: '6.0' + +dependencies: + typescript: + specifier: ^5.0.4 + version: 5.0.4 + +packages: + + /typescript@5.0.4: + resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} + engines: {node: '>=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/**/*"] +}