mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
26 lines
529 B
JSON
26 lines
529 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "ESNext",
|
||
|
"declaration": false,
|
||
|
"noImplicitAny": false,
|
||
|
"removeComments": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"jsx": "preserve",
|
||
|
"noLib": false,
|
||
|
"target": "es6",
|
||
|
"sourceMap": false,
|
||
|
"lib": [
|
||
|
"ESNext", "DOM"
|
||
|
],
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"allowUnreachableCode": true,
|
||
|
"allowUnusedLabels": true,
|
||
|
"outDir": "../../lib/locale"
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"__test__/*.ts"
|
||
|
]
|
||
|
}
|