iai-mcp-opencode/mcp-wrapper/tsconfig.json

21 lines
445 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"outDir": "./dist",
"rootDir": "./src",
"declaration": false,
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"noEmitOnError": true,
"lib": ["ES2022"],
"types": ["node"]
},
"include": ["src/**/*"]
}