Compare commits

...

3 Commits

Author SHA1 Message Date
Alyxia Sother 8ea0cac15a
[common/hc] Update lockfile 2023-06-27 09:57:04 +02:00
Alyxia Sother 0d8d05f521
[common/hc] noMediaMosaic: add
because apparently having mediaMosaicTweaks doesn't warrant completely
disabling the fucking thing
2023-06-27 09:56:12 +02:00
Alyxia Sother aef909f181
[common/hc] Add new MacBook paths to tsconfig 2023-06-27 09:55:48 +02:00
4 changed files with 17 additions and 4 deletions

Binary file not shown.

View File

@ -1,4 +1,8 @@
lockfileVersion: '6.0'
lockfileVersion: '6.1'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
typescript:

View File

@ -9,10 +9,19 @@
"noEmit": true,
"jsx": "react",
"paths": {
"@hh/*": ["/Users/alyxia/Documents/gitrepos/hh3/types/*"],
"@hh/ext/*": ["/Users/alyxia/Documents/gitrepos/hh3/ext/*"]
"@hh/*": [
"/Users/alyxia/Documents/gitrepos/hh3/types/*",
"/Users/alyxia/Documents/Installations/hh3/types/*"
],
"@hh/ext/*": [
"/Users/alyxia/Documents/gitrepos/hh3/ext/*",
"/Users/alyxia/Documents/Installations/hh3/ext/*"
]
},
"typeRoots": ["/Users/alyxia/Documents/gitrepos/hh3/types"]
"typeRoots": [
"/Users/alyxia/Documents/gitrepos/hh3/types",
"/Users/alyxia/Documents/Installations/hh3/types"
]
},
"include": ["./ext/**/*", "./global.d.ts"]
}