Files
element-plus/docs/tsconfig.json
Noblet Ouways a8a83be56a docs: fix typecheck (#22452)
* docs: fix typecheck

* chore: undo lock

* chore: set react stub in gitignore

* chore: try be kind on windows

* chore: try be kind on windows v2

* chore: try be kind on windows v3

don't ignore stub

* chore: use Vue 3.4.31

* fix: import jsx from vue

---------

Co-authored-by: dopamine <coderzyou@gmail.com>
2025-11-17 13:46:17 +01:00

26 lines
710 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/*"],
"vue": ["./node_modules/vue"]
},
"types": ["unplugin-icons/types/vue"],
"jsx": "preserve",
"jsxImportSource": "vue"
},
"include": ["**/*", ".vitepress/**/*", "../typings/global.d.ts"],
"exclude": ["node_modules"]
}