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.
27 lines
509 B
27 lines
509 B
{ |
|
"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", |
|
"*.config.ts", |
|
"*.config.js" |
|
] |
|
}
|
|
|