openmcp-client/software/tsconfig.json
2025-04-28 21:08:39 +08:00

13 lines
351 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist"
},
"include": ["src/**/*.ts"], // 确保包含所有 .ts 文件
"exclude": ["node_modules"]
}