element-plus/packages/utils/tsconfig.json
hangzou e8c162ea72
fix: fix rollup module (#434)
* 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
2020-10-20 11:45:44 +08:00

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__/*"
]
}