mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* Revert "fix(types): packing unexpected types (#19419)"
This reverts commit 13506ffb81.
* Revert "chore: add explicit type annoation (#19352)"
* fix(typescript): borken import paths in declaration files
* chore: emits smaller declaration files
32 lines
732 B
JSON
32 lines
732 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"baseUrl": ".",
|
|
"sourceMap": false,
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"rootDir": ".",
|
|
"types": [],
|
|
"paths": {
|
|
"@element-plus/*": [
|
|
"packages/components/*",
|
|
"packages/utils/*",
|
|
"packages/hooks/*",
|
|
"packages/directives/*",
|
|
"packages/constants/*",
|
|
"packages/locale/*"
|
|
],
|
|
"element-plus": ["packages/element-plus"]
|
|
},
|
|
"preserveSymlinks": true
|
|
}
|
|
}
|