@monorise/core 1.0.1 → 1.0.3

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.
@@ -447,7 +447,7 @@ declare const config: {
447
447
  }>) | undefined;
448
448
  tags?: {
449
449
  name: string;
450
- processor: (entity: import("@monorise/react").CreatedEntity<import("@monorise/base").Entity>) => {
450
+ processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
451
451
  group?: string;
452
452
  sortValue?: string;
453
453
  }[];
@@ -301,7 +301,7 @@ declare const config: {
301
301
  }>) | undefined;
302
302
  tags?: {
303
303
  name: string;
304
- processor: (entity: import("@monorise/react").CreatedEntity<import("@monorise/base").Entity>) => {
304
+ processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
305
305
  group?: string;
306
306
  sortValue?: string;
307
307
  }[];
@@ -74,7 +74,7 @@ declare const config: {
74
74
  }>) | undefined;
75
75
  tags?: {
76
76
  name: string;
77
- processor: (entity: import("@monorise/react").CreatedEntity<import("@monorise/base").Entity>) => {
77
+ processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
78
78
  group?: string;
79
79
  sortValue?: string;
80
80
  }[];
@@ -201,7 +201,7 @@ declare const config: {
201
201
  }>) | undefined;
202
202
  tags?: {
203
203
  name: string;
204
- processor: (entity: import("@monorise/react").CreatedEntity<import("@monorise/base").Entity>) => {
204
+ processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
205
205
  group?: string;
206
206
  sortValue?: string;
207
207
  }[];
@@ -336,7 +336,7 @@ declare const config: {
336
336
  }>) | undefined;
337
337
  tags?: {
338
338
  name: string;
339
- processor: (entity: import("@monorise/react").CreatedEntity<import("@monorise/base").Entity>) => {
339
+ processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
340
340
  group?: string;
341
341
  sortValue?: string;
342
342
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monorise/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/tsconfig.json CHANGED
@@ -29,9 +29,10 @@
29
29
  /* Modules */
30
30
  "module": "esnext" /* Specify what module code is generated. */,
31
31
  // "rootDir": "./", /* Specify the root folder within your source files. */
32
- "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
33
- "baseUrl": "./" /* Specify the base directory to resolve non-relative module names. */,
32
+ "moduleResolution": "bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
33
+ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
34
34
  "paths": {
35
+ "#/shared/*": ["../../shared/*"],
35
36
  "#/*": ["./*"],
36
37
  "#/lambda-layer/monorise": ["/opt/nodejs/monorise", "./mock/monorise"]
37
38
  },