forked from mengyxu/noob-components
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.
26 lines
471 B
26 lines
471 B
|
6 months ago
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./dist",
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"emitDeclarationOnly": false,
|
||
|
|
"module": "esnext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"target": "esnext"
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"index.ts",
|
||
|
|
"vue-shim.d.ts",
|
||
|
|
"packages/**/*.ts",
|
||
|
|
"packages/**/*.vue",
|
||
|
|
"plugs/**/*.ts",
|
||
|
|
"plugs/**/*.vue"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"examples"
|
||
|
|
]
|
||
|
|
}
|