mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
ead1002533
* chore(deps): update vite related dependency for play and docs * fix: type error * fix: unocss * chore: add port * fix: types --------- Co-authored-by: warmthsea <2586244885@qq.com>
23 lines
596 B
JSON
23 lines
596 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"lib": ["WebWorker"],
|
|
"paths": {
|
|
"element-plus": ["../packages/element-plus"],
|
|
"~/*": ["./.vitepress/vitepress/*"]
|
|
},
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["**/*", ".vitepress/**/*", "../typings/global.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|