@things-factory/contact 8.0.0-beta.9 → 8.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ /* EXPORT ENTITY TYPES */
2
+ export * from './contact/profile'
3
+ export * from './contact/contact-item'
4
+ export * from './contact/contact'
5
+
6
+ /* IMPORT ENTITIES AND RESOLVERS */
7
+ import { entities as ContactEntities, resolvers as ContactResolvers } from './contact'
8
+
9
+ export const entities = [
10
+ /* ENTITIES */
11
+ ...ContactEntities
12
+ ]
13
+
14
+ export const subscribers = [
15
+ /* SUBSCRIBERS */
16
+ ]
17
+
18
+ export const schema = {
19
+ resolverClasses: [
20
+ /* RESOLVER CLASSES */
21
+ ...ContactResolvers
22
+ ]
23
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../tsconfig-base.json",
3
+ "compilerOptions": {
4
+ "strict": false,
5
+ "module": "commonjs",
6
+ "outDir": "../dist-server",
7
+ "baseUrl": "./"
8
+ },
9
+ "include": ["./**/*"]
10
+ }