2021-09-27 15:25:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2021-11-24 13:49:49 +08:00
|
|
|
"moduleResolution": "Node",
|
2021-09-27 15:25:16 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2022-03-06 22:20:56 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"element-plus": ["../packages/element-plus"]
|
|
|
|
}
|
2021-09-27 15:25:16 +08:00
|
|
|
},
|
2021-09-30 19:26:30 +08:00
|
|
|
"include": ["**/*", ".vitepress/**/*"],
|
2021-09-27 15:25:16 +08:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|