mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
aaf90d99d0
* test: use vitest * test: add script and ci * chore: improve tsconfig * refactor: use-form-item * fix: remove unused * chore: improve scripts * test: improve mock * refactor: change coverage
22 lines
606 B
JSON
22 lines
606 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "ES6",
|
|
"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.jest.json" },
|
|
{ "path": "./tsconfig.vitest.json" }
|
|
],
|
|
"include": ["packages", "typings"],
|
|
"exclude": ["node_modules", "**/dist", "**/__tests__/**/*"]
|
|
}
|