@modern-js/server-core 3.2.0 → 3.2.1

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.
@@ -40,6 +40,14 @@ export interface ServerUserConfig {
40
40
  * @default false
41
41
  */
42
42
  disableHook?: boolean;
43
+ /**
44
+ * Path to the tsconfig used by all server-side TypeScript stages:
45
+ * BFF/api compile, custom server compile, runtime ts-node register,
46
+ * and downstream runtimes.
47
+ *
48
+ * @default <appDirectory>/tsconfig.json
49
+ */
50
+ tsconfigPath?: string;
43
51
  }
44
52
  export type ServerNormalizedConfig = ServerUserConfig;
45
53
  export {};
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "3.2.0",
18
+ "version": "3.2.1",
19
19
  "types": "./dist/types/index.d.ts",
20
20
  "main": "./dist/cjs/index.js",
21
21
  "exports": {
@@ -71,19 +71,19 @@
71
71
  "flatted": "^3.4.2",
72
72
  "hono": "^4.11.7",
73
73
  "ts-deepmerge": "7.0.3",
74
- "@modern-js/plugin": "3.2.0",
75
- "@modern-js/utils": "3.2.0",
76
- "@modern-js/runtime-utils": "3.2.0"
74
+ "@modern-js/plugin": "3.2.1",
75
+ "@modern-js/runtime-utils": "3.2.1",
76
+ "@modern-js/utils": "3.2.1"
77
77
  },
78
78
  "devDependencies": {
79
- "@rslib/core": "0.21.4",
79
+ "@rslib/core": "0.21.5",
80
80
  "@types/cloneable-readable": "^2.0.3",
81
81
  "@types/merge-deep": "^3.0.3",
82
82
  "@types/node": "^20",
83
83
  "http-proxy-middleware": "^2.0.9",
84
84
  "typescript": "^5",
85
85
  "@modern-js/rslib": "2.68.10",
86
- "@modern-js/types": "3.2.0",
86
+ "@modern-js/types": "3.2.1",
87
87
  "@scripts/rstest-config": "2.66.0"
88
88
  },
89
89
  "sideEffects": false,