mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
1a2c77474a
- Remove types field from tsconfig.json
21 lines
510 B
JSON
21 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"module": "ES6",
|
|
"target": "ES2018",
|
|
"noImplicitAny": false,
|
|
"declaration": true,
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"lib": ["ES2018", "DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["packages"],
|
|
"exclude": ["node_modules", "**/__test?__", "**/dist"]
|
|
}
|