element-plus/tsconfig.json

21 lines
569 B
JSON
Raw Normal View History

2020-07-22 00:35:23 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"allowJs": true,
2022-04-19 11:23:21 +08:00
"module": "ESNext",
"target": "ES2018",
"noImplicitAny": false,
2021-11-24 13:49:49 +08:00
"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__/**/*"]
2020-07-22 00:35:23 +08:00
}