openmcp-client/service/tsconfig.json

20 lines
499 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"declaration": true, // 新增
"declarationMap": true // 新增
},
"paths": {
"@/*": [
"src/*"
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "src/main.ts"] // 排除 main.ts
}