mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
1d13ebb05d
* feat: drop jest * test: remove ssr * test: rename * chore: update tsconfig
21 lines
569 B
JSON
21 lines
569 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"]
|
|
},
|
|
"references": [
|
|
{ "path": "./tsconfig.vite-config.json" },
|
|
{ "path": "./tsconfig.vitest.json" }
|
|
],
|
|
"include": ["packages", "typings"],
|
|
"exclude": ["node_modules", "**/dist", "**/__tests__/**/*"]
|
|
}
|