Files
element-plus/tsconfig.web.json
yuhengshen 5ee6449b01 fix(types): [other] cannot find declare module types from installed packages (#21266)
* fix(types): cannot find declare module types from installed packages

* fix(types): play global type error

* fix(types): typecheck error
2025-07-11 13:47:18 +08:00

25 lines
502 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"composite": true,
"jsx": "preserve",
"lib": ["ES2018", "DOM", "DOM.Iterable"],
"types": ["unplugin-vue-macros/macros-global"],
"skipLibCheck": true
},
"include": [
"packages/utils/vue3.3.polyfill.ts",
"packages",
"typings/env.d.ts"
],
"exclude": [
"node_modules",
"**/dist",
"**/__tests__/**/*",
"**/gulpfile.ts",
"**/test-helper",
"packages/test-utils",
"**/*.md"
]
}