mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
23 lines
511 B
JSON
23 lines
511 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"noImplicitAny": false,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"lib": ["ES2018", "DOM", "DOM.Iterable"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["unplugin-vue-define-options"]
|
|
},
|
|
"include": ["packages", "typings"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/dist",
|
|
"**/__tests__/**/*",
|
|
"**/test/**",
|
|
"**/tests/**"
|
|
]
|
|
}
|