mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
60cb2262f9
* feat: move /typings/components.d.ts to /typings/global.d.ts * feat: use /typings/global.d.ts file * chore: adjust the order for global.d.ts
24 lines
606 B
JSON
24 lines
606 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/*"]
|
|
},
|
|
"types": ["../typings/global"],
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["**/*", ".vitepress/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|