mirror of
https://github.com/element-plus/element-plus.git
synced 2025-12-19 09:09:40 +08:00
* 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>
26 lines
710 B
JSON
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"]
|
|
}
|