widget.qw 1.0.81 → 1.0.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.development +9 -9
- package/.env.production +8 -8
- package/README.md +75 -75
- package/build/style.css +471 -471
- package/build/widget.qw.es.js +55 -56
- package/build/widget.qw.umd.js +55 -56
- package/index.html +17 -17
- package/package.json +47 -47
- package/src/App.vue +26 -26
- package/src/api/index.js +165 -165
- package/src/components/AuditBar.vue +396 -396
- package/src/components/BillCard.vue +164 -164
- package/src/components/CascaderPicker.vue +132 -132
- package/src/components/CascaderPop.vue +371 -371
- package/src/components/CheckGroup.vue +113 -113
- package/src/components/DatetimePicker/DatetimePop.vue +342 -342
- package/src/components/DatetimePicker/index.vue +124 -124
- package/src/components/DayDropdown.vue +56 -56
- package/src/components/FilePicker.vue +169 -169
- package/src/components/Input.vue +80 -80
- package/src/components/MonthDropdown.vue +51 -51
- package/src/components/MultiPicker.vue +123 -123
- package/src/components/ObjsEditor.vue +334 -334
- package/src/components/SecretNotify.js +5 -5
- package/src/components/Sheet.vue +92 -92
- package/src/components/SingleApiPicker.vue +108 -108
- package/src/components/SinglePicker.vue +102 -102
- package/src/components/SingleUserSelector.vue +425 -425
- package/src/components/Switch.vue +64 -64
- package/src/components/TreePicker.vue +113 -113
- package/src/components/UserPicker.vue +106 -106
- package/src/components/UserProfile.vue +129 -129
- package/src/components/UsersPicker.vue +118 -118
- package/src/components/YearDropdown.vue +59 -59
- package/src/components/data_selector.vue +303 -303
- package/src/components/image_picker.vue +123 -123
- package/src/components/images_picker.vue +195 -195
- package/src/components/index.js +162 -162
- package/src/components/mult_list_selector.vue +155 -155
- package/src/components/subdepartment_selector.vue +481 -481
- package/src/components/user_selector.vue +639 -639
- package/src/components/widget/DataPop.vue +95 -95
- package/src/components/widget/TreePop.vue +88 -88
- package/src/components/widget/UserPop.vue +347 -347
- package/src/env.d.ts +8 -8
- package/src/main.js +117 -117
- package/src/router/index.ts +173 -173
- package/src/util/array_util.js +32 -32
- package/src/util/auth_util.js +72 -73
- package/src/util/bool_util.js +5 -5
- package/src/util/bus.js +1 -1
- package/src/util/cache_util.js +18 -18
- package/src/util/errer_code.js +6 -6
- package/src/util/eval_util.js +19 -19
- package/src/util/icon_util.js +36 -36
- package/src/util/image_util.js +27 -27
- package/src/util/index.js +57 -57
- package/src/util/num_util.js +70 -70
- package/src/util/obj_util.js +28 -28
- package/src/util/request.js +73 -73
- package/src/util/request_json.js +71 -71
- package/src/util/request_json_mute.js +65 -65
- package/src/util/request_upload.js +79 -79
- package/src/util/route_util.js +31 -31
- package/src/util/str_util.js +143 -143
- package/src/util/time_util.js +406 -406
- package/src/util/toast_util.js +24 -24
- package/src/util/tree_util.js +153 -153
- package/src/util/uuid_util.js +9 -9
- package/src/util/validate.js +182 -182
- package/src/util/vue_filter.js +223 -223
- package/src/views/auditbar/index.vue +78 -78
- package/src/views/billcard/index.vue +48 -48
- package/src/views/cascaderpop/index.vue +90 -90
- package/src/views/checkgroup/index.vue +35 -35
- package/src/views/dataSelector/index.vue +48 -48
- package/src/views/datetimepicker/index.vue +34 -34
- package/src/views/daydropdown/index.vue +31 -31
- package/src/views/filepicker/index.vue +32 -32
- package/src/views/imagepicker/index.vue +31 -31
- package/src/views/imagespicker/index.vue +37 -37
- package/src/views/input/index.vue +35 -35
- package/src/views/monthdropdown/index.vue +31 -31
- package/src/views/multListSelector/index.vue +61 -61
- package/src/views/multipicker/index.vue +36 -36
- package/src/views/objseditor/index.vue +277 -277
- package/src/views/productSelector/index.vue +35 -35
- package/src/views/projectpicker/index.vue +41 -41
- package/src/views/secretnotify/index.vue +27 -27
- package/src/views/sheet/index.vue +45 -45
- package/src/views/singlepicker/index.vue +35 -35
- package/src/views/subdepartmentSelector/index.vue +40 -40
- package/src/views/switch/index.vue +34 -34
- package/src/views/treepicker/index.vue +41 -41
- package/src/views/userSelector/index.vue +54 -54
- package/src/views/userSelectorNew/index.vue +45 -45
- package/src/views/userpicker/index.vue +43 -43
- package/src/views/userprofile/index.vue +30 -30
- package/src/views/userspicker/index.vue +43 -43
- package/src/views/yeardropdown/index.vue +32 -32
- package/src/vm/index.js +1 -1
- package/tsconfig.json +19 -19
- package/tsconfig.node.json +8 -8
- package/vite.config.ts +122 -122
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="page">
|
|
3
|
-
<WidgetQwSingleUserSelector
|
|
4
|
-
:auth="formData.auth"
|
|
5
|
-
:deptRangeId="formData.deptRangeId"
|
|
6
|
-
v-model="formData.singleUser"
|
|
7
|
-
@select="onSelect"
|
|
8
|
-
/>
|
|
9
|
-
</div>
|
|
10
|
-
</template>
|
|
11
|
-
|
|
12
|
-
<script setup>
|
|
13
|
-
import { reactive ,onMounted} from "vue";
|
|
14
|
-
const formData = reactive({
|
|
15
|
-
departmentId: "1517", // 组件默认展开哪个部门下的数据,可为空
|
|
16
|
-
deptRangeId: "production_dept_ids",
|
|
17
|
-
singleUser: "023663",
|
|
18
|
-
// singleUser: "014391",
|
|
19
|
-
auth: "require",
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
const onSelect=(e)=>{
|
|
23
|
-
console.log('onSelect', e)
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
onMounted(()=>{
|
|
27
|
-
setTimeout(()=>{
|
|
28
|
-
formData.singleUser = '014391'
|
|
29
|
-
},10000)
|
|
30
|
-
})
|
|
31
|
-
</script>
|
|
32
|
-
|
|
33
|
-
<style lang="scss" scoped>
|
|
34
|
-
.page {
|
|
35
|
-
height: 100vh;
|
|
36
|
-
background: #fff;
|
|
37
|
-
text-align: center;
|
|
38
|
-
background-size: cover;
|
|
39
|
-
display: flex;
|
|
40
|
-
flex-direction: column;
|
|
41
|
-
justify-content: flex-start;
|
|
42
|
-
padding: 80px 15px 0 15px;
|
|
43
|
-
box-sizing: border-box;
|
|
44
|
-
}
|
|
45
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="page">
|
|
3
|
+
<WidgetQwSingleUserSelector
|
|
4
|
+
:auth="formData.auth"
|
|
5
|
+
:deptRangeId="formData.deptRangeId"
|
|
6
|
+
v-model="formData.singleUser"
|
|
7
|
+
@select="onSelect"
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script setup>
|
|
13
|
+
import { reactive ,onMounted} from "vue";
|
|
14
|
+
const formData = reactive({
|
|
15
|
+
departmentId: "1517", // 组件默认展开哪个部门下的数据,可为空
|
|
16
|
+
deptRangeId: "production_dept_ids",
|
|
17
|
+
singleUser: "023663",
|
|
18
|
+
// singleUser: "014391",
|
|
19
|
+
auth: "require",
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
const onSelect=(e)=>{
|
|
23
|
+
console.log('onSelect', e)
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
onMounted(()=>{
|
|
27
|
+
setTimeout(()=>{
|
|
28
|
+
formData.singleUser = '014391'
|
|
29
|
+
},10000)
|
|
30
|
+
})
|
|
31
|
+
</script>
|
|
32
|
+
|
|
33
|
+
<style lang="scss" scoped>
|
|
34
|
+
.page {
|
|
35
|
+
height: 100vh;
|
|
36
|
+
background: #fff;
|
|
37
|
+
text-align: center;
|
|
38
|
+
background-size: cover;
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
justify-content: flex-start;
|
|
42
|
+
padding: 80px 15px 0 15px;
|
|
43
|
+
box-sizing: border-box;
|
|
44
|
+
}
|
|
45
|
+
</style>
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="page">
|
|
3
|
-
<WidgetQwUserPicker
|
|
4
|
-
:auth="formData.auth"
|
|
5
|
-
v-model="formData.userId"
|
|
6
|
-
@select="onSelect"
|
|
7
|
-
rootDeptId="-1"
|
|
8
|
-
/>
|
|
9
|
-
</div>
|
|
10
|
-
</template>
|
|
11
|
-
|
|
12
|
-
<script setup>
|
|
13
|
-
import { reactive ,onMounted} from "vue";
|
|
14
|
-
const formData = reactive({
|
|
15
|
-
deptRangeId: "production_dept_ids",
|
|
16
|
-
userId: "014391",
|
|
17
|
-
auth: "option",
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
const onSelect=(e)=>{
|
|
21
|
-
console.log('onSelect', e)
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
onMounted(()=>{
|
|
25
|
-
setTimeout(()=>{
|
|
26
|
-
formData.singleUser = '014391'
|
|
27
|
-
},10000)
|
|
28
|
-
})
|
|
29
|
-
</script>
|
|
30
|
-
|
|
31
|
-
<style lang="scss" scoped>
|
|
32
|
-
.page {
|
|
33
|
-
height: 100vh;
|
|
34
|
-
background: #fff;
|
|
35
|
-
text-align: center;
|
|
36
|
-
background-size: cover;
|
|
37
|
-
display: flex;
|
|
38
|
-
flex-direction: column;
|
|
39
|
-
justify-content: flex-start;
|
|
40
|
-
padding: 80px 15px 0 15px;
|
|
41
|
-
box-sizing: border-box;
|
|
42
|
-
}
|
|
43
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="page">
|
|
3
|
+
<WidgetQwUserPicker
|
|
4
|
+
:auth="formData.auth"
|
|
5
|
+
v-model="formData.userId"
|
|
6
|
+
@select="onSelect"
|
|
7
|
+
rootDeptId="-1"
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script setup>
|
|
13
|
+
import { reactive ,onMounted} from "vue";
|
|
14
|
+
const formData = reactive({
|
|
15
|
+
deptRangeId: "production_dept_ids",
|
|
16
|
+
userId: "014391",
|
|
17
|
+
auth: "option",
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
const onSelect=(e)=>{
|
|
21
|
+
console.log('onSelect', e)
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
onMounted(()=>{
|
|
25
|
+
setTimeout(()=>{
|
|
26
|
+
formData.singleUser = '014391'
|
|
27
|
+
},10000)
|
|
28
|
+
})
|
|
29
|
+
</script>
|
|
30
|
+
|
|
31
|
+
<style lang="scss" scoped>
|
|
32
|
+
.page {
|
|
33
|
+
height: 100vh;
|
|
34
|
+
background: #fff;
|
|
35
|
+
text-align: center;
|
|
36
|
+
background-size: cover;
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: column;
|
|
39
|
+
justify-content: flex-start;
|
|
40
|
+
padding: 80px 15px 0 15px;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
}
|
|
43
|
+
</style>
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="page">
|
|
3
|
-
<widget-qw-user-profile @logout="onLogout" />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script setup>
|
|
8
|
-
import { reactive ,onMounted} from "vue";
|
|
9
|
-
|
|
10
|
-
const onLogout=(e)=>{
|
|
11
|
-
console.log('+++onLogout+++', e)
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
onMounted(()=>{
|
|
15
|
-
})
|
|
16
|
-
</script>
|
|
17
|
-
|
|
18
|
-
<style lang="scss" scoped>
|
|
19
|
-
.page {
|
|
20
|
-
height: 100vh;
|
|
21
|
-
background: #fff;
|
|
22
|
-
text-align: center;
|
|
23
|
-
background-size: cover;
|
|
24
|
-
display: flex;
|
|
25
|
-
flex-direction: column;
|
|
26
|
-
justify-content: flex-start;
|
|
27
|
-
padding: 80px 15px 0 15px;
|
|
28
|
-
box-sizing: border-box;
|
|
29
|
-
}
|
|
30
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="page">
|
|
3
|
+
<widget-qw-user-profile @logout="onLogout" />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup>
|
|
8
|
+
import { reactive ,onMounted} from "vue";
|
|
9
|
+
|
|
10
|
+
const onLogout=(e)=>{
|
|
11
|
+
console.log('+++onLogout+++', e)
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
onMounted(()=>{
|
|
15
|
+
})
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<style lang="scss" scoped>
|
|
19
|
+
.page {
|
|
20
|
+
height: 100vh;
|
|
21
|
+
background: #fff;
|
|
22
|
+
text-align: center;
|
|
23
|
+
background-size: cover;
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
justify-content: flex-start;
|
|
27
|
+
padding: 80px 15px 0 15px;
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="page">
|
|
3
|
-
<WidgetQwUsersPicker
|
|
4
|
-
:auth="formData.auth"
|
|
5
|
-
:deptRangeId="formData.deptRangeId"
|
|
6
|
-
v-model="formData.userIds"
|
|
7
|
-
@select="onSelect"
|
|
8
|
-
/>
|
|
9
|
-
</div>
|
|
10
|
-
</template>
|
|
11
|
-
|
|
12
|
-
<script setup>
|
|
13
|
-
import { reactive ,onMounted} from "vue";
|
|
14
|
-
const formData = reactive({
|
|
15
|
-
deptRangeId: "production_dept_ids",
|
|
16
|
-
userIds: null,
|
|
17
|
-
auth: "require",
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
const onSelect=(e)=>{
|
|
21
|
-
console.log('onSelect', e)
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
onMounted(()=>{
|
|
25
|
-
// setTimeout(()=>{
|
|
26
|
-
// formData.singleUser = '014391'
|
|
27
|
-
// },10000)
|
|
28
|
-
})
|
|
29
|
-
</script>
|
|
30
|
-
|
|
31
|
-
<style lang="scss" scoped>
|
|
32
|
-
.page {
|
|
33
|
-
height: 100vh;
|
|
34
|
-
background: #fff;
|
|
35
|
-
text-align: center;
|
|
36
|
-
background-size: cover;
|
|
37
|
-
display: flex;
|
|
38
|
-
flex-direction: column;
|
|
39
|
-
justify-content: flex-start;
|
|
40
|
-
padding: 80px 15px 0 15px;
|
|
41
|
-
box-sizing: border-box;
|
|
42
|
-
}
|
|
43
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="page">
|
|
3
|
+
<WidgetQwUsersPicker
|
|
4
|
+
:auth="formData.auth"
|
|
5
|
+
:deptRangeId="formData.deptRangeId"
|
|
6
|
+
v-model="formData.userIds"
|
|
7
|
+
@select="onSelect"
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script setup>
|
|
13
|
+
import { reactive ,onMounted} from "vue";
|
|
14
|
+
const formData = reactive({
|
|
15
|
+
deptRangeId: "production_dept_ids",
|
|
16
|
+
userIds: null,
|
|
17
|
+
auth: "require",
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
const onSelect=(e)=>{
|
|
21
|
+
console.log('onSelect', e)
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
onMounted(()=>{
|
|
25
|
+
// setTimeout(()=>{
|
|
26
|
+
// formData.singleUser = '014391'
|
|
27
|
+
// },10000)
|
|
28
|
+
})
|
|
29
|
+
</script>
|
|
30
|
+
|
|
31
|
+
<style lang="scss" scoped>
|
|
32
|
+
.page {
|
|
33
|
+
height: 100vh;
|
|
34
|
+
background: #fff;
|
|
35
|
+
text-align: center;
|
|
36
|
+
background-size: cover;
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: column;
|
|
39
|
+
justify-content: flex-start;
|
|
40
|
+
padding: 80px 15px 0 15px;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
}
|
|
43
|
+
</style>
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="page">
|
|
3
|
-
<van-dropdown-menu>
|
|
4
|
-
<widget-qw-year-dropdown v-model="formData.year" startYear="2020" />
|
|
5
|
-
</van-dropdown-menu>
|
|
6
|
-
|
|
7
|
-
</div>
|
|
8
|
-
</template>
|
|
9
|
-
|
|
10
|
-
<script setup>
|
|
11
|
-
import { reactive, onMounted } from "vue";
|
|
12
|
-
const formData = reactive({
|
|
13
|
-
year: new Date().getFullYear()
|
|
14
|
-
})
|
|
15
|
-
|
|
16
|
-
onMounted(() => {
|
|
17
|
-
})
|
|
18
|
-
</script>
|
|
19
|
-
|
|
20
|
-
<style lang="scss" scoped>
|
|
21
|
-
.page {
|
|
22
|
-
height: 100vh;
|
|
23
|
-
background: #fff;
|
|
24
|
-
text-align: center;
|
|
25
|
-
background-size: cover;
|
|
26
|
-
display: flex;
|
|
27
|
-
flex-direction: column;
|
|
28
|
-
justify-content: flex-start;
|
|
29
|
-
padding: 80px 15px 0 15px;
|
|
30
|
-
box-sizing: border-box;
|
|
31
|
-
}
|
|
32
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="page">
|
|
3
|
+
<van-dropdown-menu>
|
|
4
|
+
<widget-qw-year-dropdown v-model="formData.year" startYear="2020" />
|
|
5
|
+
</van-dropdown-menu>
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script setup>
|
|
11
|
+
import { reactive, onMounted } from "vue";
|
|
12
|
+
const formData = reactive({
|
|
13
|
+
year: new Date().getFullYear()
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
onMounted(() => {
|
|
17
|
+
})
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<style lang="scss" scoped>
|
|
21
|
+
.page {
|
|
22
|
+
height: 100vh;
|
|
23
|
+
background: #fff;
|
|
24
|
+
text-align: center;
|
|
25
|
+
background-size: cover;
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
justify-content: flex-start;
|
|
29
|
+
padding: 80px 15px 0 15px;
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
}
|
|
32
|
+
</style>
|
package/src/vm/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
// 默认的apibaseUrl
|
|
1
|
+
// 默认的apibaseUrl
|
|
2
2
|
export default {}
|
package/tsconfig.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "esnext",
|
|
4
|
-
"useDefineForClassFields": true,
|
|
5
|
-
"module": "esnext",
|
|
6
|
-
"moduleResolution": "node",
|
|
7
|
-
"strict": true,
|
|
8
|
-
"jsx": "preserve",
|
|
9
|
-
"sourceMap": true,
|
|
10
|
-
"resolveJsonModule": true,
|
|
11
|
-
"isolatedModules": true,
|
|
12
|
-
"esModuleInterop": true,
|
|
13
|
-
"lib": ["esnext", "dom"],
|
|
14
|
-
"skipLibCheck": true,
|
|
15
|
-
"allowJs": true,
|
|
16
|
-
},
|
|
17
|
-
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
18
|
-
"references": [{ "path": "./tsconfig.node.json" }]
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "esnext",
|
|
4
|
+
"useDefineForClassFields": true,
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"strict": true,
|
|
8
|
+
"jsx": "preserve",
|
|
9
|
+
"sourceMap": true,
|
|
10
|
+
"resolveJsonModule": true,
|
|
11
|
+
"isolatedModules": true,
|
|
12
|
+
"esModuleInterop": true,
|
|
13
|
+
"lib": ["esnext", "dom"],
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"allowJs": true,
|
|
16
|
+
},
|
|
17
|
+
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
18
|
+
"references": [{ "path": "./tsconfig.node.json" }]
|
|
19
|
+
}
|
package/tsconfig.node.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"composite": true,
|
|
4
|
-
"module": "esnext",
|
|
5
|
-
"moduleResolution": "node"
|
|
6
|
-
},
|
|
7
|
-
"include": ["vite.config.ts"]
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"composite": true,
|
|
4
|
+
"module": "esnext",
|
|
5
|
+
"moduleResolution": "node"
|
|
6
|
+
},
|
|
7
|
+
"include": ["vite.config.ts"]
|
|
8
|
+
}
|