mirror of
https://github.com/longbridge/developers.git
synced 2026-09-19 03:34:09 +08:00
d6fb4709cc
1. 支持多个自定义组件 2. 支持自动生成文档路由
32 lines
736 B
JSON
32 lines
736 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": "./packages/docs" }
|
|
],
|
|
"vueCompilerOptions": {
|
|
"vitePressExtensions": [".md"],
|
|
},
|
|
}
|