element-plus/tsconfig.web.json

21 lines
449 B
JSON
Raw Permalink Normal View History

2022-04-22 09:43:38 +08:00
{
"extends": "./tsconfig.base.json",
2022-04-22 09:43:38 +08:00
"compilerOptions": {
"composite": true,
"jsx": "preserve",
2022-04-22 09:43:38 +08:00
"lib": ["ES2018", "DOM", "DOM.Iterable"],
"types": ["unplugin-vue-macros/macros-global"],
"skipLibCheck": true
2022-04-22 09:43:38 +08:00
},
"include": ["packages", "typings/env.d.ts"],
2022-04-22 09:43:38 +08:00
"exclude": [
"node_modules",
"**/dist",
"**/__tests__/**/*",
"**/gulpfile.ts",
"**/test-helper",
"packages/test-utils",
"**/*.md"
2022-04-22 09:43:38 +08:00
]
}