frontmcp 0.1.8 → 0.1.9
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.
- package/dist/cli.js +2 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/src/cli.ts +2 -1
- package/src/version.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -299,7 +299,7 @@ const RECOMMENDED_TSCONFIG = {
|
|
|
299
299
|
module: REQUIRED_DECORATOR_FIELDS.module,
|
|
300
300
|
emitDecoratorMetadata: REQUIRED_DECORATOR_FIELDS.emitDecoratorMetadata,
|
|
301
301
|
experimentalDecorators: REQUIRED_DECORATOR_FIELDS.experimentalDecorators,
|
|
302
|
-
moduleResolution: '
|
|
302
|
+
moduleResolution: 'node',
|
|
303
303
|
strict: true,
|
|
304
304
|
esModuleInterop: true,
|
|
305
305
|
resolveJsonModule: true,
|
|
@@ -498,6 +498,7 @@ function upsertPackageJson(cwd, nameOverride, selfVersion) {
|
|
|
498
498
|
devDependencies: {
|
|
499
499
|
frontmcp: selfVersion, // exact CLI version used by npx
|
|
500
500
|
tsx: '^4.20.6',
|
|
501
|
+
"@types/node": "^20.11.30",
|
|
501
502
|
typescript: '^5.5.3',
|
|
502
503
|
},
|
|
503
504
|
};
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -274,7 +274,7 @@ const RECOMMENDED_TSCONFIG = {
|
|
|
274
274
|
emitDecoratorMetadata: REQUIRED_DECORATOR_FIELDS.emitDecoratorMetadata,
|
|
275
275
|
experimentalDecorators: REQUIRED_DECORATOR_FIELDS.experimentalDecorators,
|
|
276
276
|
|
|
277
|
-
moduleResolution: '
|
|
277
|
+
moduleResolution: 'node',
|
|
278
278
|
strict: true,
|
|
279
279
|
esModuleInterop: true,
|
|
280
280
|
resolveJsonModule: true,
|
|
@@ -470,6 +470,7 @@ async function upsertPackageJson(cwd: string, nameOverride: string | undefined,
|
|
|
470
470
|
devDependencies: {
|
|
471
471
|
frontmcp: selfVersion, // exact CLI version used by npx
|
|
472
472
|
tsx: '^4.20.6',
|
|
473
|
+
"@types/node": "^20.11.30",
|
|
473
474
|
typescript: '^5.5.3',
|
|
474
475
|
},
|
|
475
476
|
};
|
package/src/version.ts
CHANGED