mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
6cc16bbd06
* chore: add vue-tsc for type check * refactor(components): respect Vue's own style type * refactor(components): improve props type * chore(build): improve types * fix(components): remove unnecessary props * perf(components): use shallowRef * fix(components): add missing property type for table * refactor(components): improve time-picker types * refactor(components): extract import type * refactor(components): improve popper types * refactor(components): upload list types * fix(docs): fix type * better type * fix: remove index
27 lines
587 B
JSON
27 lines
587 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"noLib": false,
|
|
"target": "es6",
|
|
"sourceMap": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/__tests__",
|
|
"dist/**",
|
|
"packages/*/es",
|
|
"packages/*/lib"
|
|
]
|
|
}
|