create-vue 3.1.1 → 3.1.5
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/LICENSE +153 -1
- package/outfile.cjs +10 -2
- package/package.json +4 -3
- package/template/base/_gitignore +1 -0
- package/template/base/package.json +2 -2
- package/template/code/default/src/components/HelloWorld.vue +1 -1
- package/template/code/default/src/components/TheWelcome.vue +4 -4
- package/template/code/router/src/components/HelloWorld.vue +1 -1
- package/template/code/router/src/components/TheWelcome.vue +4 -4
- package/template/code/typescript-default/src/components/HelloWorld.vue +1 -1
- package/template/code/typescript-default/src/components/TheWelcome.vue +4 -4
- package/template/code/typescript-router/src/components/HelloWorld.vue +1 -1
- package/template/code/typescript-router/src/components/TheWelcome.vue +4 -4
- package/template/config/cypress/cypress/plugins/index.ts +0 -2
- package/template/config/cypress/node_modules/.bin/cypress +4 -4
- package/template/config/cypress/package.json +1 -1
- package/template/config/cypress-ct/cypress/plugins/index.ts +0 -2
- package/template/config/cypress-ct/node_modules/.bin/cypress +4 -4
- package/template/config/cypress-ct/package.json +2 -2
- package/template/config/pinia/package.json +2 -2
- package/template/config/router/package.json +1 -1
- package/template/config/typescript/node_modules/.bin/tsc +4 -4
- package/template/config/typescript/node_modules/.bin/tsserver +4 -4
- package/template/config/typescript/node_modules/.bin/vue-tsc +4 -4
- package/template/config/typescript/package.json +3 -3
- package/template/config/vitest/node_modules/.bin/vitest +4 -4
- package/template/config/vitest/package.json +2 -2
- package/template/config/vuex/package.json +1 -1
- package/template/tsconfig/base/package.json +5 -0
- package/template/tsconfig/base/tsconfig.json +16 -0
- package/template/tsconfig/base/tsconfig.vite-config.json +8 -0
- package/template/tsconfig/cypress/cypress/plugins/tsconfig.json +9 -0
- package/template/tsconfig/cypress/cypress/tsconfig.json +10 -0
- package/template/tsconfig/vitest/package.json +8 -0
- package/template/tsconfig/vitest/tsconfig.json +20 -0
- package/template/tsconfig/vitest/tsconfig.vitest.json +12 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
# create-vue core license
|
|
2
|
+
|
|
3
|
+
create-vue is released under the MIT license:
|
|
4
|
+
|
|
1
5
|
MIT License
|
|
2
6
|
|
|
3
|
-
Copyright (c) 2021 vuejs
|
|
7
|
+
Copyright (c) 2021-present vuejs
|
|
4
8
|
|
|
5
9
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
10
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -19,3 +23,151 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
19
23
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
24
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
25
|
SOFTWARE.
|
|
26
|
+
|
|
27
|
+
## Licenses of bundled dependencies
|
|
28
|
+
|
|
29
|
+
The published create-vue artifact additionally contains code with the following licenses:
|
|
30
|
+
MIT
|
|
31
|
+
|
|
32
|
+
## Bundled dependencies
|
|
33
|
+
|
|
34
|
+
## kleur
|
|
35
|
+
|
|
36
|
+
License: MIT
|
|
37
|
+
By: Luke Edwards
|
|
38
|
+
Repository: git+https://github.com/lukeed/kleur.git
|
|
39
|
+
|
|
40
|
+
> The MIT License (MIT)
|
|
41
|
+
>
|
|
42
|
+
> Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
43
|
+
>
|
|
44
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
45
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
46
|
+
> in the Software without restriction, including without limitation the rights
|
|
47
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
48
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
49
|
+
> furnished to do so, subject to the following conditions:
|
|
50
|
+
>
|
|
51
|
+
> The above copyright notice and this permission notice shall be included in
|
|
52
|
+
> all copies or substantial portions of the Software.
|
|
53
|
+
>
|
|
54
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
55
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
56
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
57
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
58
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
59
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
60
|
+
> THE SOFTWARE.
|
|
61
|
+
>
|
|
62
|
+
|
|
63
|
+
## kolorist
|
|
64
|
+
|
|
65
|
+
License: MIT
|
|
66
|
+
By: Marvin Hagemeister
|
|
67
|
+
Repository: git+https://github.com/marvinhagemeister/kolorist.git
|
|
68
|
+
|
|
69
|
+
> The MIT License (MIT)
|
|
70
|
+
>
|
|
71
|
+
> Copyright (c) 2020-present Marvin Hagemeister
|
|
72
|
+
>
|
|
73
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
74
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
75
|
+
> in the Software without restriction, including without limitation the rights
|
|
76
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
77
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
78
|
+
> furnished to do so, subject to the following conditions:
|
|
79
|
+
>
|
|
80
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
81
|
+
> copies or substantial portions of the Software.
|
|
82
|
+
>
|
|
83
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
84
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
85
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
86
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
87
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
88
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
89
|
+
> SOFTWARE.
|
|
90
|
+
|
|
91
|
+
## minimist
|
|
92
|
+
|
|
93
|
+
License: MIT
|
|
94
|
+
By: James Halliday
|
|
95
|
+
Repository: git://github.com/substack/minimist.git
|
|
96
|
+
|
|
97
|
+
> This software is released under the MIT license:
|
|
98
|
+
>
|
|
99
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
100
|
+
> this software and associated documentation files (the "Software"), to deal in
|
|
101
|
+
> the Software without restriction, including without limitation the rights to
|
|
102
|
+
> use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
103
|
+
> the Software, and to permit persons to whom the Software is furnished to do so,
|
|
104
|
+
> subject to the following conditions:
|
|
105
|
+
>
|
|
106
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
107
|
+
> copies or substantial portions of the Software.
|
|
108
|
+
>
|
|
109
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
110
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
111
|
+
> FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
112
|
+
> COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
113
|
+
> IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
114
|
+
> CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
115
|
+
>
|
|
116
|
+
|
|
117
|
+
## prompts
|
|
118
|
+
|
|
119
|
+
License: MIT
|
|
120
|
+
By: Terkel Gjervig
|
|
121
|
+
Repository: git+https://github.com/terkelg/prompts.git
|
|
122
|
+
|
|
123
|
+
> MIT License
|
|
124
|
+
>
|
|
125
|
+
> Copyright (c) 2018 Terkel Gjervig Nielsen
|
|
126
|
+
>
|
|
127
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
128
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
129
|
+
> in the Software without restriction, including without limitation the rights
|
|
130
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
131
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
132
|
+
> furnished to do so, subject to the following conditions:
|
|
133
|
+
>
|
|
134
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
135
|
+
> copies or substantial portions of the Software.
|
|
136
|
+
>
|
|
137
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
138
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
139
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
140
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
141
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
142
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
143
|
+
> SOFTWARE.
|
|
144
|
+
>
|
|
145
|
+
|
|
146
|
+
## sisteransi
|
|
147
|
+
|
|
148
|
+
License: MIT
|
|
149
|
+
By: Terkel Gjervig
|
|
150
|
+
Repository: git+https://github.com/terkelg/sisteransi.git
|
|
151
|
+
|
|
152
|
+
> MIT License
|
|
153
|
+
>
|
|
154
|
+
> Copyright (c) 2018 Terkel Gjervig Nielsen
|
|
155
|
+
>
|
|
156
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
157
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
158
|
+
> in the Software without restriction, including without limitation the rights
|
|
159
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
160
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
161
|
+
> furnished to do so, subject to the following conditions:
|
|
162
|
+
>
|
|
163
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
164
|
+
> copies or substantial portions of the Software.
|
|
165
|
+
>
|
|
166
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
167
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
168
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
169
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
170
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
171
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
172
|
+
> SOFTWARE.
|
|
173
|
+
>
|
package/outfile.cjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/*! create-vue v3.1.5 | MIT */
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -5798,7 +5799,7 @@ ${banner_default}
|
|
|
5798
5799
|
}
|
|
5799
5800
|
const {
|
|
5800
5801
|
projectName,
|
|
5801
|
-
packageName = projectName,
|
|
5802
|
+
packageName = projectName || defaultProjectName,
|
|
5802
5803
|
shouldOverwrite = argv.force,
|
|
5803
5804
|
needsJsx = argv.jsx,
|
|
5804
5805
|
needsTypeScript = argv.typescript,
|
|
@@ -5846,6 +5847,13 @@ Scaffolding project in ${root}...`);
|
|
|
5846
5847
|
}
|
|
5847
5848
|
if (needsTypeScript) {
|
|
5848
5849
|
render("config/typescript");
|
|
5850
|
+
render("tsconfig/base");
|
|
5851
|
+
if (needsCypress) {
|
|
5852
|
+
render("tsconfig/cypress");
|
|
5853
|
+
}
|
|
5854
|
+
if (needsVitest) {
|
|
5855
|
+
render("tsconfig/vitest");
|
|
5856
|
+
}
|
|
5849
5857
|
}
|
|
5850
5858
|
if (needsEslint) {
|
|
5851
5859
|
renderEslint(root, { needsTypeScript, needsCypress, needsCypressCT, needsPrettier });
|
|
@@ -5872,7 +5880,7 @@ Scaffolding project in ${root}...`);
|
|
|
5872
5880
|
import_fs5.default.renameSync(filepath, tsFilePath);
|
|
5873
5881
|
}
|
|
5874
5882
|
} else if (import_path4.default.basename(filepath) === "jsconfig.json") {
|
|
5875
|
-
import_fs5.default.
|
|
5883
|
+
import_fs5.default.unlinkSync(filepath);
|
|
5876
5884
|
}
|
|
5877
5885
|
});
|
|
5878
5886
|
const indexHtmlPath = import_path4.default.resolve(root, "index.html");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vue",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5",
|
|
4
4
|
"description": "An easy way to start a Vue project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,9 +26,10 @@
|
|
|
26
26
|
"homepage": "https://github.com/vuejs/create-vue#readme",
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"esbuild": "^0.13.15",
|
|
29
|
+
"esbuild-plugin-license": "^1.1.0",
|
|
29
30
|
"husky": "^7.0.4",
|
|
30
31
|
"kolorist": "^1.5.1",
|
|
31
|
-
"lint-staged": "^12.
|
|
32
|
+
"lint-staged": "^12.3.3",
|
|
32
33
|
"minimist": "^1.2.5",
|
|
33
34
|
"npm-run-all": "^4.1.5",
|
|
34
35
|
"prettier": "^2.5.1",
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
},
|
|
43
44
|
"scripts": {
|
|
44
45
|
"format": "prettier --write .",
|
|
45
|
-
"build": "
|
|
46
|
+
"build": "zx ./scripts/build.mjs",
|
|
46
47
|
"snapshot": "zx ./scripts/snapshot.mjs",
|
|
47
48
|
"pretest": "run-s build snapshot",
|
|
48
49
|
"test": "zx ./scripts/test.mjs"
|
package/template/base/_gitignore
CHANGED
|
@@ -13,7 +13,7 @@ defineProps({
|
|
|
13
13
|
<h3>
|
|
14
14
|
You’ve successfully created a project with
|
|
15
15
|
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
|
|
16
|
-
<a target="_blank" href="https://
|
|
16
|
+
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
|
|
17
17
|
</h3>
|
|
18
18
|
</div>
|
|
19
19
|
</template>
|
|
@@ -15,7 +15,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
15
15
|
<template #heading>Documentation</template>
|
|
16
16
|
|
|
17
17
|
Vue’s
|
|
18
|
-
<a target="_blank" href="https://
|
|
18
|
+
<a target="_blank" href="https://vuejs.org/">official documentation</a>
|
|
19
19
|
provides you with all information you need to get started.
|
|
20
20
|
</WelcomeItem>
|
|
21
21
|
|
|
@@ -48,8 +48,8 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
50
|
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
|
-
<a target="_blank" href="https://
|
|
52
|
-
<a target="_blank" href="https://
|
|
51
|
+
<a target="_blank" href="https://router.vuejs.org/">Vue Router</a>,
|
|
52
|
+
<a target="_blank" href="https://test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
54
54
|
resources, we suggest paying
|
|
55
55
|
<a target="_blank" href="https://github.com/vuejs/awesome-vue">Awesome Vue</a>
|
|
@@ -79,6 +79,6 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
79
79
|
|
|
80
80
|
As an independent project, Vue relies on community backing for its sustainability. You can help
|
|
81
81
|
us by
|
|
82
|
-
<a target="_blank" href="https://vuejs.org/
|
|
82
|
+
<a target="_blank" href="https://vuejs.org/sponsor/">becoming a sponsor</a>.
|
|
83
83
|
</WelcomeItem>
|
|
84
84
|
</template>
|
|
@@ -13,7 +13,7 @@ defineProps({
|
|
|
13
13
|
<h3>
|
|
14
14
|
You’ve successfully created a project with
|
|
15
15
|
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
|
|
16
|
-
<a target="_blank" href="https://
|
|
16
|
+
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
|
|
17
17
|
</h3>
|
|
18
18
|
</div>
|
|
19
19
|
</template>
|
|
@@ -15,7 +15,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
15
15
|
<template #heading>Documentation</template>
|
|
16
16
|
|
|
17
17
|
Vue’s
|
|
18
|
-
<a target="_blank" href="https://
|
|
18
|
+
<a target="_blank" href="https://vuejs.org/">official documentation</a>
|
|
19
19
|
provides you with all information you need to get started.
|
|
20
20
|
</WelcomeItem>
|
|
21
21
|
|
|
@@ -48,8 +48,8 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
50
|
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
|
-
<a target="_blank" href="https://
|
|
52
|
-
<a target="_blank" href="https://
|
|
51
|
+
<a target="_blank" href="https://router.vuejs.org/">Vue Router</a>,
|
|
52
|
+
<a target="_blank" href="https://test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
54
54
|
resources, we suggest paying
|
|
55
55
|
<a target="_blank" href="https://github.com/vuejs/awesome-vue">Awesome Vue</a>
|
|
@@ -79,6 +79,6 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
79
79
|
|
|
80
80
|
As an independent project, Vue relies on community backing for its sustainability. You can help
|
|
81
81
|
us by
|
|
82
|
-
<a target="_blank" href="https://vuejs.org/
|
|
82
|
+
<a target="_blank" href="https://vuejs.org/sponsor/">becoming a sponsor</a>.
|
|
83
83
|
</WelcomeItem>
|
|
84
84
|
</template>
|
|
@@ -10,7 +10,7 @@ defineProps<{
|
|
|
10
10
|
<h3>
|
|
11
11
|
You’ve successfully created a project with
|
|
12
12
|
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
|
|
13
|
-
<a target="_blank" href="https://
|
|
13
|
+
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
|
|
14
14
|
</h3>
|
|
15
15
|
</div>
|
|
16
16
|
</template>
|
|
@@ -15,7 +15,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
15
15
|
<template #heading>Documentation</template>
|
|
16
16
|
|
|
17
17
|
Vue’s
|
|
18
|
-
<a target="_blank" href="https://
|
|
18
|
+
<a target="_blank" href="https://vuejs.org/">official documentation</a>
|
|
19
19
|
provides you with all information you need to get started.
|
|
20
20
|
</WelcomeItem>
|
|
21
21
|
|
|
@@ -48,8 +48,8 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
50
|
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
|
-
<a target="_blank" href="https://
|
|
52
|
-
<a target="_blank" href="https://
|
|
51
|
+
<a target="_blank" href="https://router.vuejs.org/">Vue Router</a>,
|
|
52
|
+
<a target="_blank" href="https://test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
54
54
|
resources, we suggest paying
|
|
55
55
|
<a target="_blank" href="https://github.com/vuejs/awesome-vue">Awesome Vue</a>
|
|
@@ -79,6 +79,6 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
79
79
|
|
|
80
80
|
As an independent project, Vue relies on community backing for its sustainability. You can help
|
|
81
81
|
us by
|
|
82
|
-
<a target="_blank" href="https://vuejs.org/
|
|
82
|
+
<a target="_blank" href="https://vuejs.org/sponsor/">becoming a sponsor</a>.
|
|
83
83
|
</WelcomeItem>
|
|
84
84
|
</template>
|
|
@@ -10,7 +10,7 @@ defineProps<{
|
|
|
10
10
|
<h3>
|
|
11
11
|
You’ve successfully created a project with
|
|
12
12
|
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
|
|
13
|
-
<a target="_blank" href="https://
|
|
13
|
+
<a target="_blank" href="https://vuejs.org/">Vue 3</a>. What's next?
|
|
14
14
|
</h3>
|
|
15
15
|
</div>
|
|
16
16
|
</template>
|
|
@@ -15,7 +15,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
15
15
|
<template #heading>Documentation</template>
|
|
16
16
|
|
|
17
17
|
Vue’s
|
|
18
|
-
<a target="_blank" href="https://
|
|
18
|
+
<a target="_blank" href="https://vuejs.org/">official documentation</a>
|
|
19
19
|
provides you with all information you need to get started.
|
|
20
20
|
</WelcomeItem>
|
|
21
21
|
|
|
@@ -48,8 +48,8 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
50
|
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
|
-
<a target="_blank" href="https://
|
|
52
|
-
<a target="_blank" href="https://
|
|
51
|
+
<a target="_blank" href="https://router.vuejs.org/">Vue Router</a>,
|
|
52
|
+
<a target="_blank" href="https://test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
54
54
|
resources, we suggest paying
|
|
55
55
|
<a target="_blank" href="https://github.com/vuejs/awesome-vue">Awesome Vue</a>
|
|
@@ -79,6 +79,6 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
79
79
|
|
|
80
80
|
As an independent project, Vue relies on community backing for its sustainability. You can help
|
|
81
81
|
us by
|
|
82
|
-
<a target="_blank" href="https://vuejs.org/
|
|
82
|
+
<a target="_blank" href="https://vuejs.org/sponsor/">becoming a sponsor</a>.
|
|
83
83
|
</WelcomeItem>
|
|
84
84
|
</template>
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/cypress/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/cypress/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@9.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/cypress" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@9.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/cypress" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/cypress-ct/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/cypress@9.4.1/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/cypress-ct/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@9.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/cypress" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@9.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@9.4.1/node_modules/cypress/bin/cypress" "$@"
|
|
17
17
|
fi
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"test:unit:ci": "cypress run-ct --quiet --reporter spec"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"vue": "^3.2.
|
|
7
|
+
"vue": "^3.2.29"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@cypress/vite-dev-server": "^2.2.2",
|
|
11
11
|
"@cypress/vue": "^3.1.0",
|
|
12
|
-
"cypress": "^9.
|
|
12
|
+
"cypress": "^9.4.1",
|
|
13
13
|
"vite": "^2.7.13"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/tsc" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/tsc" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/typescript@4.5.5/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/tsserver" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/bin/tsserver" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules/vue-tsc/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules/vue-tsc/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules/vue-tsc/bin/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules/vue-tsc/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/typescript/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules/vue-tsc/bin/vue-tsc.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.31.1_typescript@4.5.5/node_modules/vue-tsc/bin/vue-tsc.js" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vitest@0.
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vitest@0.2.6_jsdom@19.0.0/node_modules/vitest/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vitest@0.2.6_jsdom@19.0.0/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/vitest/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vitest@0.
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vitest@0.2.6_jsdom@19.0.0/node_modules/vitest/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/vitest@0.2.6_jsdom@19.0.0/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules:/Users/haoqun/Developer/vuejs/create-vue/node_modules:/Users/haoqun/Developer/vuejs/node_modules:/Users/haoqun/Developer/node_modules:/Users/haoqun/node_modules:/Users/node_modules:/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/vitest/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/config/node_modules:/Users/haoqun/Developer/vuejs/create-vue/template/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.2.6_jsdom@19.0.0/node_modules/vitest/vitest.mjs" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.2.6_jsdom@19.0.0/node_modules/vitest/vitest.mjs" "$@"
|
|
17
17
|
fi
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
3
|
+
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"baseUrl": ".",
|
|
6
|
+
"paths": {
|
|
7
|
+
"@/*": ["./src/*"]
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
"references": [
|
|
12
|
+
{
|
|
13
|
+
"path": "./tsconfig.vite-config.json"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
3
|
+
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
|
4
|
+
"exclude": ["src/**/__tests__/*"],
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"baseUrl": ".",
|
|
7
|
+
"paths": {
|
|
8
|
+
"@/*": ["./src/*"]
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
"references": [
|
|
13
|
+
{
|
|
14
|
+
"path": "./tsconfig.vite-config.json"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"path": "./tsconfig.vitest.json"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|