mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-01 10:47:57 +08:00
07d2beccfc
allow vue default props; disallow arrow parens when only one parameter; use rule words rather than number; modify the sequences of rules; delete a duplicate field in tsconfig
22 lines
366 B
JSON
22 lines
366 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ES2020",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"noLib": false,
|
|
"target": "es6",
|
|
"sourceMap": true,
|
|
"lib": [
|
|
"es2020", "dom"
|
|
],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|
|
|