mirror of
https://github.com/longbridge/developers.git
synced 2026-09-19 03:34:09 +08:00
bb3123302c
新增针对现有的 Http 接口提供了一个在线调试面板,可在线对当前 API 的参数进行调试,便于用户更直观的查看返回结果并提供复制和下载按钮。调试默认使用模拟账户的凭证,真实账户需要手动填写 --------- Co-authored-by: 石石 <lei.yang@longbridge-inc.com> Co-authored-by: tzyoo <tzyitooo@gmail.com> Co-authored-by: 袁昌瑞 <changrui.yuan@longbridge-inc.com>
30 lines
716 B
JSON
30 lines
716 B
JSON
{
|
|
"compilerOptions": {
|
|
// Environment setup & latest features
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"jsx": "preserve",
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noPropertyAccessFromIndexSignature": true
|
|
},
|
|
// "include": [],
|
|
"exclude": ["node_modules", "dist"],
|
|
"references": [{ "path": "./docs" }],
|
|
"vueCompilerOptions": {
|
|
"vitePressExtensions": [".md"]
|
|
}
|
|
}
|