element-plus/tsconfig.json

24 lines
558 B
JSON
Raw Normal View History

2020-07-22 00:35:23 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"allowJs": true,
2021-11-24 13:49:49 +08:00
"module": "ES6",
"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.jest.json" }],
"include": ["packages", "typings"],
"exclude": [
"node_modules",
"**/dist",
"**/__tests__",
"**/*.test.*",
"**/*.spec.*"
]
2020-07-22 00:35:23 +08:00
}