mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
0327d2d0b2
* feat(utils): add buildProp * chore: disable eslint rule * chore: typescript use strict * refactor(components): refactor button * feat: add comment for buildProp
28 lines
607 B
JSON
28 lines
607 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,
|
|
"strict": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/__tests__",
|
|
"dist/**",
|
|
"packages/*/es",
|
|
"packages/*/lib"
|
|
]
|
|
}
|