@nuxt/kit 3.7.1 → 3.7.2
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/README.md +1 -1
- package/dist/index.mjs +6 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ It provides a number of features that make it easy to build fast, SEO-friendly,
|
|
|
26
26
|
Use the following command to create a new starter project. This will create a starter project with all the necessary files and dependencies:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npx nuxi@latest
|
|
29
|
+
npx nuxi@latest init <my-project>
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Discover also [nuxt.new](https://nuxt.new): Open a Nuxt starter on CodeSandbox, StackBlitz or locally to get up and running in a few seconds.
|
package/dist/index.mjs
CHANGED
|
@@ -2797,6 +2797,7 @@ async function writeTypes(nuxt) {
|
|
|
2797
2797
|
compilerOptions: {
|
|
2798
2798
|
forceConsistentCasingInFileNames: true,
|
|
2799
2799
|
jsx: "preserve",
|
|
2800
|
+
jsxImportSource: "vue",
|
|
2800
2801
|
target: "ESNext",
|
|
2801
2802
|
module: "ESNext",
|
|
2802
2803
|
moduleResolution: nuxt.options.experimental?.typescriptBundlerResolution ? "Bundler" : "Node",
|
|
@@ -2804,6 +2805,11 @@ async function writeTypes(nuxt) {
|
|
|
2804
2805
|
isolatedModules: true,
|
|
2805
2806
|
useDefineForClassFields: true,
|
|
2806
2807
|
strict: nuxt.options.typescript?.strict ?? true,
|
|
2808
|
+
noImplicitThis: true,
|
|
2809
|
+
esModuleInterop: true,
|
|
2810
|
+
// TODO: enable by default in v3.8
|
|
2811
|
+
// types: [],
|
|
2812
|
+
// verbatimModuleSyntax: true,
|
|
2807
2813
|
allowJs: true,
|
|
2808
2814
|
noEmit: true,
|
|
2809
2815
|
resolveJsonModule: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/kit",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.2",
|
|
4
4
|
"repository": "nuxt/nuxt",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"globby": "^13.2.2",
|
|
24
24
|
"hash-sum": "^2.0.0",
|
|
25
25
|
"ignore": "^5.2.4",
|
|
26
|
-
"jiti": "^1.
|
|
26
|
+
"jiti": "^1.20.0",
|
|
27
27
|
"knitwork": "^1.0.0",
|
|
28
28
|
"mlly": "^1.4.2",
|
|
29
29
|
"pathe": "^1.1.1",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"unctx": "^2.3.1",
|
|
35
35
|
"unimport": "^3.3.0",
|
|
36
36
|
"untyped": "^1.4.0",
|
|
37
|
-
"@nuxt/schema": "3.7.
|
|
37
|
+
"@nuxt/schema": "3.7.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/hash-sum": "1.0.0",
|
|
41
41
|
"@types/lodash-es": "4.17.9",
|
|
42
42
|
"@types/semver": "7.5.1",
|
|
43
43
|
"lodash-es": "4.17.21",
|
|
44
|
-
"nitropack": "2.6.
|
|
44
|
+
"nitropack": "2.6.3",
|
|
45
45
|
"unbuild": "latest",
|
|
46
46
|
"vite": "4.4.9",
|
|
47
47
|
"vitest": "0.33.0",
|