@candlerip/shared3 0.0.31 → 0.0.32
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/project/project-config/domains/index.d.ts +1 -0
- package/src/project/project-config/domains/index.js +1 -0
- package/src/project/project-config/domains/project-config-map/index.d.ts +20 -0
- package/src/project/project-config/domains/project-config-map/index.js +1 -0
package/package.json
CHANGED
@@ -5,5 +5,6 @@ export * from './dictionary-service-poject-config/index.js';
|
|
5
5
|
export * from './images-project-config/index.js';
|
6
6
|
export * from './images-init-project-config/index.js';
|
7
7
|
export * from './logger-service-project-config/index.js';
|
8
|
+
export * from './project-config-map/index.js';
|
8
9
|
export * from './rabbitmq-project-config/index.js';
|
9
10
|
export * from './redis-project-config/index.js';
|
@@ -5,5 +5,6 @@ export * from './dictionary-service-poject-config/index.js';
|
|
5
5
|
export * from './images-project-config/index.js';
|
6
6
|
export * from './images-init-project-config/index.js';
|
7
7
|
export * from './logger-service-project-config/index.js';
|
8
|
+
export * from './project-config-map/index.js';
|
8
9
|
export * from './rabbitmq-project-config/index.js';
|
9
10
|
export * from './redis-project-config/index.js';
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { BackendInitProjectConfig } from '../backend-init-project-config/index.js';
|
2
|
+
import { BackendProjectConfig } from '../backend-project-config/index.js';
|
3
|
+
import { CacheServiceProjectConfig } from '../cache-service-project-config/index.js';
|
4
|
+
import { DictionaryServiceProjectConfig } from '../dictionary-service-poject-config/index.js';
|
5
|
+
import { ImagesInitProjectConfig } from '../images-init-project-config/index.js';
|
6
|
+
import { ImagesProjectConfig } from '../images-project-config/index.js';
|
7
|
+
import { LoggerServiceProjectConfig } from '../logger-service-project-config/index.js';
|
8
|
+
import { RabbitmqProjectConfig } from '../rabbitmq-project-config/index.js';
|
9
|
+
import { RedisProjectConfig } from '../redis-project-config/index.js';
|
10
|
+
export type ProjectConfigMap = {
|
11
|
+
'backend-project-config': BackendProjectConfig;
|
12
|
+
'backend-init-project-config': BackendInitProjectConfig;
|
13
|
+
'cache-service-project-config': CacheServiceProjectConfig;
|
14
|
+
'dictionary-service-project-config': DictionaryServiceProjectConfig;
|
15
|
+
'images-project-config': ImagesProjectConfig;
|
16
|
+
'images-init-project-config': ImagesInitProjectConfig;
|
17
|
+
'logger-service-project-config': LoggerServiceProjectConfig;
|
18
|
+
'rabbitmq-project-config': RabbitmqProjectConfig;
|
19
|
+
'redis-project-config': RedisProjectConfig;
|
20
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|