build(projects): update tsconfig、eslintrc

This commit is contained in:
Soybean
2022-03-12 16:21:40 +08:00
parent 4093dcd6dc
commit 75de2b0604
131 changed files with 1174 additions and 1140 deletions

View File

@@ -53,22 +53,22 @@ const swiperExample: SwiperExample[] = [
id: 1,
label: 'Navigation',
options: {
navigation: true
}
navigation: true,
},
},
{
id: 2,
label: 'Pagination',
options: {
pagination: true
}
pagination: true,
},
},
{
id: 3,
label: 'Pagination dynamic',
options: {
pagination: { dynamicBullets: true }
}
pagination: { dynamicBullets: true },
},
},
{
id: 4,
@@ -76,9 +76,9 @@ const swiperExample: SwiperExample[] = [
options: {
navigation: true,
pagination: {
type: 'progressbar'
}
}
type: 'progressbar',
},
},
},
{
id: 5,
@@ -86,20 +86,20 @@ const swiperExample: SwiperExample[] = [
options: {
navigation: true,
pagination: {
type: 'fraction'
}
}
type: 'fraction',
},
},
},
{
id: 6,
label: 'Slides per view',
options: {
pagination: {
clickable: true
clickable: true,
},
slidesPerView: 3,
spaceBetween: 30
}
spaceBetween: 30,
},
},
{
id: 7,
@@ -107,11 +107,11 @@ const swiperExample: SwiperExample[] = [
options: {
navigation: true,
pagination: {
clickable: true
clickable: true,
},
loop: true
}
}
loop: true,
},
},
];
</script>
<style scoped></style>