2021-08-24 13:36:48 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"noLib": false,
|
|
|
|
"target": "esnext",
|
|
|
|
"lib": ["esnext", "DOM"],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"skipLibCheck": true,
|
2021-09-04 19:29:28 +08:00
|
|
|
"rootDir": "packages/element-plus"
|
2021-08-24 13:36:48 +08:00
|
|
|
},
|
2021-09-04 19:29:28 +08:00
|
|
|
"exclude": ["node_modules"]
|
2021-08-24 13:36:48 +08:00
|
|
|
}
|