We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
package.json
1 parent b2f097c commit fb6eb21Copy full SHA for fb6eb21
index.ts
@@ -3,7 +3,7 @@ import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'
3
import minimist from 'minimist';
4
import { Resend } from 'resend';
5
import { z } from 'zod';
6
-import packageJson from './package.json';
+import packageJson from './package.json' with { type: 'json' };
7
8
// Parse command line arguments
9
const argv = minimist(process.argv.slice(2));
tsconfig.json
@@ -1,8 +1,8 @@
1
{
2
"compilerOptions": {
"target": "ES2022",
- "module": "Node16",
- "moduleResolution": "Node16",
+ "module": "nodenext",
+ "moduleResolution": "nodenext",
"resolveJsonModule": true,
"jsx": "react-jsx",
"outDir": "./build",
0 commit comments