ai-manus/chat-client/jsconfig.json

19 lines
433 B
JSON
Raw Normal View History

2025-07-18 16:38:18 +08:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"baseUrl": "./",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"paths": {
"~/*": ["*"],
"@/*": ["src/*"],
"/#/*": ["types/*"],
"@vab/*": ["library/*"],
"@gp": ["library/plugins/vab"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"exclude": ["node_modules", "dist"]
}