基于vue3.0和element-plus的组件库
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"types": [
|
|
|
|
"webpack-env"
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/": [
|
|
|
|
"./"
|
|
|
|
],
|
|
|
|
"noob": [
|
|
|
|
"./packages"
|
|
|
|
],
|
|
|
|
"plugs": [
|
|
|
|
"./plugs"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"scripthost"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"examples/**/*.ts",
|
|
|
|
"examples/**/*.tsx",
|
|
|
|
"examples/**/*.vue",
|
|
|
|
"packages/**/*.ts",
|
|
|
|
"packages/**/*.tsx",
|
|
|
|
"packages/**/*.vue"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|