* chore: add vue-tsc script * fix: remove non existent props from ModelSelector * fix: add basic typing for files * fix: fix Artwork object in demo * fix: use DatePickerModel from v-calendar on modelValue Fixes vue-tsc validation errors * chore: add `@vue/tsconfig` * refactor: extracted types from v-calendar --------- Co-authored-by: Sadegh Barati <sadeghbaratiwork@gmail.com>
14 lines
297 B
JSON
14 lines
297 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"declaration": false
|
|
},
|
|
"include": ["src/lib/**/*"],
|
|
"exclude": ["node_modules", "src/lib/registry/**/example/**/*"]
|
|
}
|