mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
e8c162ea72
* fix(build): fix some export & import path * fix(build): build utils * fix: fix error import * fix(build): fix import error * fix(build): remove useless dependent * fix(build): fix build command error
29 lines
574 B
JSON
29 lines
574 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/utils"
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"packages/**/__tests__/*"
|
|
]
|
|
}
|