mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
23 lines
574 B
JSON
23 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"noLib": false,
|
|
"target": "es6",
|
|
"sourceMap": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "**/__tests__", "dist/**"]
|
|
}
|