element-plus/tsconfig.json
三咲智子 1d13ebb05d
feat: drop jest (#7248)
* feat: drop jest

* test: remove ssr

* test: rename

* chore: update tsconfig
2022-04-19 16:51:44 +08:00

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