mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
79938178dd
* build: use vue-tsc to generate dts * reduce inline type declaration * fix: type checking failed * apply suggestions from code review * address PR comments
24 lines
506 B
JSON
24 lines
506 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/*"]
|
|
},
|
|
"preserveSymlinks": true
|
|
}
|
|
}
|