File tree Expand file tree Collapse file tree 4 files changed +103
-4
lines changed Expand file tree Collapse file tree 4 files changed +103
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ import { keymap } from '@codemirror/view'
4
4
import { type Options } from ' ink-mde'
5
5
import { nanoid } from ' nanoid'
6
6
import CoreLink from ' ./CoreLink.vue'
7
- import { type CoreEditor , type CoreScrollable } from ' #components'
8
7
import CoreDivider from ' #root/components/CoreDivider.vue'
8
+ import type CoreEditor from ' /components/CoreEditor.vue'
9
+ import type CoreScrollable from ' /components/CoreScrollable.vue'
9
10
import { type SystemInstruction , useSystemInstructions } from ' #root/composables/useSystemInstructions'
10
11
11
12
export default defineComponent ({
Original file line number Diff line number Diff line change 2
2
import { Prec } from ' @codemirror/state'
3
3
import { keymap } from ' @codemirror/view'
4
4
import { type Options } from ' ink-mde'
5
- import { type CoreEditor } from ' # components'
5
+ import type CoreEditor from ' / components/CoreEditor.vue '
6
6
import { readonly } from ' #root/src/vendor/plugins/readonly'
7
7
8
8
export default defineComponent ({
Original file line number Diff line number Diff line change 1
1
<script lang="ts" setup>
2
2
import { ListboxButton } from ' @headlessui/vue'
3
- import { CoreButton } from ' # components'
3
+ import CoreButton from ' / components/CoreButton.vue '
4
4
</script >
5
5
6
6
<template >
Original file line number Diff line number Diff line change 8
8
"module" : " ESNext" ,
9
9
"moduleResolution" : " Node" ,
10
10
"noEmit" : true ,
11
+ "paths" : {
12
+ "~" : [
13
+ " ./"
14
+ ],
15
+ "~/*" : [
16
+ " ./*"
17
+ ],
18
+ "@" : [
19
+ " ./"
20
+ ],
21
+ "@/*" : [
22
+ " ./*"
23
+ ],
24
+ "~~" : [
25
+ " ./"
26
+ ],
27
+ "~~/*" : [
28
+ " ./*"
29
+ ],
30
+ "@@" : [
31
+ " ./"
32
+ ],
33
+ "@@/*" : [
34
+ " ./*"
35
+ ],
36
+ "assets" : [
37
+ " ./assets"
38
+ ],
39
+ "assets/*" : [
40
+ " ./assets/*"
41
+ ],
42
+ "public" : [
43
+ " ./public"
44
+ ],
45
+ "public/*" : [
46
+ " ./public/*"
47
+ ],
48
+ "/" : [
49
+ " ./"
50
+ ],
51
+ "/*" : [
52
+ " ./*"
53
+ ],
54
+ "#components" : [
55
+ " ./components"
56
+ ],
57
+ "#components/*" : [
58
+ " ./components/*"
59
+ ],
60
+ "#composables" : [
61
+ " ./composables"
62
+ ],
63
+ "#composables/*" : [
64
+ " ./composables/*"
65
+ ],
66
+ "#helpers" : [
67
+ " ./helpers"
68
+ ],
69
+ "#helpers/*" : [
70
+ " ./helpers/*"
71
+ ],
72
+ "#root" : [
73
+ " ."
74
+ ],
75
+ "#root/*" : [
76
+ " ./*"
77
+ ],
78
+ "#shared" : [
79
+ " ./lib/shared"
80
+ ],
81
+ "#shared/*" : [
82
+ " ./lib/shared/*"
83
+ ],
84
+ "#test" : [
85
+ " ./test"
86
+ ],
87
+ "#test/*" : [
88
+ " ./test/*"
89
+ ],
90
+ "#test-utils" : [
91
+ " ./test/utils"
92
+ ],
93
+ "#test-utils/*" : [
94
+ " ./test/utils/*"
95
+ ],
96
+ "#vue-router" : [
97
+ " ./.nuxt/vue-router-stub"
98
+ ],
99
+ "#imports" : [
100
+ " ./.nuxt/imports"
101
+ ],
102
+ "#build" : [
103
+ " ./.nuxt"
104
+ ],
105
+ "#build/*" : [
106
+ " ./.nuxt/*"
107
+ ]
108
+ },
11
109
"resolveJsonModule" : true ,
12
110
"skipLibCheck" : true ,
13
111
"strict" : true ,
14
112
"target" : " esnext" ,
15
113
"useDefineForClassFields" : true
16
114
},
17
115
"exclude" : [
116
+ " **/node_modules" ,
18
117
" ./.output" ,
19
118
" ./cypress.config.ts" ,
20
119
" ./dev-dist" ,
21
120
" ./dist" ,
22
- " ./node_modules/cypress/**/*" ,
23
121
" ./test/cypress/**/*"
24
122
]
25
123
}
You can’t perform that action at this time.
0 commit comments