openmcp-client/tsconfig.json
2025-06-20 17:04:26 +08:00

36 lines
864 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"noEmitHelpers": false,
"experimentalDecorators": true,
"sourceMap": true,
"types": [
"./service/task-loop.d.ts"
],
// 允许访问 openmcp-sdk 目录
"paths": {
"@openmcp-sdk/*": [
"./openmcp-sdk/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"service",
"renderer"
]
}