mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[common/hc] removeChannelIcons: TSify
This commit is contained in:
parent
7b7ccf4156
commit
ea8f95383b
6 changed files with 40 additions and 1 deletions
2
.gitattributes
vendored
2
.gitattributes
vendored
|
@ -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
|
||||
|
|
Binary file not shown.
BIN
common/hellcooling/config/ext/removeChannelIcons.ts
Normal file
BIN
common/hellcooling/config/ext/removeChannelIcons.ts
Normal file
Binary file not shown.
7
common/hellcooling/config/package.json
Normal file
7
common/hellcooling/config/package.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"name": "-",
|
||||
"description": "blblbl, blbl, wawawawa",
|
||||
"dependencies": {
|
||||
"typescript": "^5.0.4"
|
||||
}
|
||||
}
|
14
common/hellcooling/config/pnpm-lock.yaml
Normal file
14
common/hellcooling/config/pnpm-lock.yaml
Normal file
|
@ -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
|
18
common/hellcooling/config/tsconfig.json
Normal file
18
common/hellcooling/config/tsconfig.json
Normal file
|
@ -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/**/*"]
|
||||
}
|
Loading…
Reference in a new issue