We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1791a7b commit 55ef686Copy full SHA for 55ef686
src/accountConfigs/index.ts
@@ -1,4 +1,5 @@
1
import christophehurpeau from './christophehurpeau';
2
+import liwijs from './liwijs';
3
import ornikar from './ornikar';
4
import reviewflow from './reviewflow';
5
import type { Config as ConfigType } from './types';
@@ -9,6 +10,7 @@ export type Config<
9
10
> = ConfigType<GroupNames, TeamNames>;
11
12
export const accountConfigs: Record<string, Config> = {
13
+ liwijs,
14
ornikar,
15
christophehurpeau,
16
reviewflow,
src/accountConfigs/liwijs.ts
@@ -0,0 +1,7 @@
+import chrisconfig from './christophehurpeau';
+import type { Config } from './types';
+
+const config: Config<'dev', never> = {
+ ...chrisconfig,
6
+};
7
+export default config;
0 commit comments