mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(docs): partially remove typecript errors * chore: cleanup * chore: refact Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com> * docs: typo fix type error --------- Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com> Co-authored-by: Wanghua3819 <2586244885@qq.com>
24 lines
643 B
JSON
24 lines
643 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"paths": {
|
|
"element-plus": ["../packages/element-plus"],
|
|
"~/*": ["./.vitepress/vitepress/*"]
|
|
},
|
|
"types": ["unplugin-icons/types/vue"],
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["**/*", ".vitepress/**/*", "../typings/global.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|