mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
23 lines
584 B
JSON
23 lines
584 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"element-plus": ["../packages/element-plus"],
|
|
"~/*": ["./.vitepress/vitepress/*"]
|
|
},
|
|
"types": ["../typings/components"],
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["**/*", ".vitepress/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|