Files
element-plus/docs/tsconfig.json
Noblet Ouways 7ccf1e4c53 refactor(docs): partially remove typecript errors (#21099)
* 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>
2025-07-07 22:30:02 +08:00

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"]
}