File tree 4 files changed +205
-0
lines changed
4 files changed +205
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ module.exports = {
12
12
// override/add rules settings here, such as:
13
13
'vue/no-unused-vars' : 'off' ,
14
14
'vue/multi-word-component-names' : 'off' ,
15
+ 'Parsing error: Unexpected token as' : 'off' ,
15
16
// 'no-unused-vars': 'off',
16
17
} ,
18
+ parserOptions : {
19
+ ecmaVersion : 12 ,
20
+ sourceType : 'module' ,
21
+ parser : '@typescript-eslint/parser' ,
22
+ } ,
17
23
}
Original file line number Diff line number Diff line change 30
30
"@tailwindcss/typography" : " ^0.5.2" ,
31
31
"@types/markdown-it-link-attributes" : " ^3.0.1" ,
32
32
"@types/node" : " ^18.0.0" ,
33
+ "@typescript-eslint/eslint-plugin" : " ^5.29.0" ,
34
+ "@typescript-eslint/parser" : " ^5.29.0" ,
33
35
"@vitejs/plugin-vue" : " ^2.3.3" ,
34
36
"@vue/test-utils" : " ^2.0.0" ,
35
37
"autoprefixer" : " ^10.4.7" ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import '@vue/runtime-core'
5
5
6
6
declare module '@vue/runtime-core' {
7
7
export interface GlobalComponents {
8
+ BaseAlert : typeof import ( './components/ui/alert/BaseAlert.vue' ) [ 'default' ]
8
9
BaseTable : typeof import ( './components/ui/table/BaseTable.vue' ) [ 'default' ]
9
10
BaseTableItem : typeof import ( './components/ui/table/BaseTableItem.vue' ) [ 'default' ]
10
11
BaseTableRow : typeof import ( './components/ui/table/BaseTableRow.vue' ) [ 'default' ]
@@ -14,6 +15,7 @@ declare module '@vue/runtime-core' {
14
15
DisclosureButton : typeof import ( '@headlessui/vue' ) [ 'DisclosureButton' ]
15
16
DisclosurePanel : typeof import ( '@headlessui/vue' ) [ 'DisclosurePanel' ]
16
17
Markdown : typeof import ( './components/Markdown.vue' ) [ 'default' ]
18
+ Readme : typeof import ( './components/ui/alert/Readme.md' ) [ 'default' ]
17
19
RouterLink : typeof import ( 'vue-router' ) [ 'RouterLink' ]
18
20
RouterView : typeof import ( 'vue-router' ) [ 'RouterView' ]
19
21
Switch : typeof import ( '@headlessui/vue' ) [ 'Switch' ]
You can’t perform that action at this time.
0 commit comments