* Reorganize the examples folder * Add two mcp server examples. A local filesystem server and a simple 'starter' server.
16 lines
311 B
JSON
16 lines
311 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"outDir": "dist"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|