mirror of
https://github.com/HuLaSpark/HuLa-MCP.git
synced 2026-08-28 19:43:12 +08:00
25 lines
524 B
JSON
25 lines
524 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"allowJs": true
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|