create-vite-extra 2.0.0 → 2.0.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.
Files changed (52) hide show
  1. package/package.json +1 -1
  2. package/template-deno-lit/vite.config.mjs +1 -1
  3. package/template-deno-lit-ts/vite.config.mts +1 -1
  4. package/template-deno-preact/vite.config.mjs +4 -4
  5. package/template-deno-preact-ts/vite.config.mts +4 -4
  6. package/template-deno-react/vite.config.mjs +2 -2
  7. package/template-deno-react-ts/vite.config.mts +2 -2
  8. package/template-deno-solid/vite.config.mjs +3 -3
  9. package/template-deno-solid-ts/vite.config.mts +3 -3
  10. package/template-deno-svelte/vite.config.mjs +3 -3
  11. package/template-deno-svelte-ts/vite.config.mts +3 -3
  12. package/template-deno-vue/vite.config.mjs +3 -3
  13. package/template-deno-vue-ts/vite.config.mts +3 -3
  14. package/template-library/package.json +1 -1
  15. package/template-library-ts/package.json +2 -2
  16. package/template-library-ts/tsconfig.json +1 -1
  17. package/template-ssr-preact/package.json +4 -4
  18. package/template-ssr-preact/server.js +1 -1
  19. package/template-ssr-preact-ts/package.json +6 -6
  20. package/template-ssr-preact-ts/server.js +1 -1
  21. package/template-ssr-preact-ts/tsconfig.json +1 -1
  22. package/template-ssr-preact-ts/tsconfig.node.json +2 -6
  23. package/template-ssr-react/package.json +5 -5
  24. package/template-ssr-react/server.js +1 -1
  25. package/template-ssr-react-ts/package.json +7 -7
  26. package/template-ssr-react-ts/server.js +1 -1
  27. package/template-ssr-react-ts/tsconfig.json +1 -1
  28. package/template-ssr-react-ts/tsconfig.node.json +2 -6
  29. package/template-ssr-solid/package.json +4 -4
  30. package/template-ssr-solid/server.js +1 -1
  31. package/template-ssr-solid-ts/package.json +5 -5
  32. package/template-ssr-solid-ts/server.js +1 -1
  33. package/template-ssr-solid-ts/tsconfig.json +1 -1
  34. package/template-ssr-solid-ts/tsconfig.node.json +2 -6
  35. package/template-ssr-svelte/package.json +4 -4
  36. package/template-ssr-svelte/server.js +1 -1
  37. package/template-ssr-svelte-ts/package.json +7 -7
  38. package/template-ssr-svelte-ts/server.js +1 -1
  39. package/template-ssr-svelte-ts/tsconfig.node.json +1 -5
  40. package/template-ssr-transform/package.json +1 -1
  41. package/template-ssr-vanilla/package.json +2 -2
  42. package/template-ssr-vanilla/server.js +1 -1
  43. package/template-ssr-vanilla-ts/package.json +4 -4
  44. package/template-ssr-vanilla-ts/server.js +1 -1
  45. package/template-ssr-vanilla-ts/tsconfig.json +2 -4
  46. package/template-ssr-vue/package.json +4 -4
  47. package/template-ssr-vue/server.js +1 -1
  48. package/template-ssr-vue-ts/package.json +7 -7
  49. package/template-ssr-vue-ts/server.js +1 -1
  50. package/template-ssr-vue-ts/tsconfig.json +1 -1
  51. package/template-ssr-vue-ts/tsconfig.node.json +2 -6
  52. package/template-ssr-vanilla-ts/tsconfig.node.json +0 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vite-extra",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Bjorn Lu",
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
2
 
3
3
  import 'npm:lit@^2.7.5'
4
4
 
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
2
 
3
3
  import 'npm:lit@^2.7.5'
4
4
 
@@ -1,8 +1,8 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import preact from 'npm:@preact/preset-vite@^2.6.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import preact from 'npm:@preact/preset-vite@^2.7.0'
3
3
 
4
- import 'npm:preact@^10.19.2'
5
- import 'npm:preact@^10.19.2'
4
+ import 'npm:preact@^10.19.3'
5
+ import 'npm:preact@^10.19.3'
6
6
 
7
7
  // https://vitejs.dev/config/
8
8
  export default defineConfig({
@@ -1,8 +1,8 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import preact from 'npm:@preact/preset-vite@^2.6.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import preact from 'npm:@preact/preset-vite@^2.7.0'
3
3
 
4
- import 'npm:preact@^10.19.2'
5
- import 'npm:preact@^10.19.2'
4
+ import 'npm:preact@^10.19.3'
5
+ import 'npm:preact@^10.19.3'
6
6
 
7
7
  // https://vitejs.dev/config/
8
8
  export default defineConfig({
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import react from 'npm:@vitejs/plugin-react@^4.2.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import react from 'npm:@vitejs/plugin-react@^4.2.1'
3
3
 
4
4
  import 'npm:react@^18.2.0'
5
5
  import 'npm:react-dom@^18.2.0'
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import react from 'npm:@vitejs/plugin-react@^4.2.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import react from 'npm:@vitejs/plugin-react@^4.2.1'
3
3
 
4
4
  import 'npm:react@^18.2.0'
5
5
  import 'npm:react-dom@^18.2.0'
@@ -1,7 +1,7 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import solid from 'npm:vite-plugin-solid@^2.7.2'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import solid from 'npm:vite-plugin-solid@^2.8.0'
3
3
 
4
- import 'npm:solid-js@^1.8.5'
4
+ import 'npm:solid-js@^1.8.7'
5
5
 
6
6
  // https://vitejs.dev/config/
7
7
  export default defineConfig({
@@ -1,7 +1,7 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import solid from 'npm:vite-plugin-solid@^2.7.2'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import solid from 'npm:vite-plugin-solid@^2.8.0'
3
3
 
4
- import 'npm:solid-js@^1.8.5'
4
+ import 'npm:solid-js@^1.8.7'
5
5
 
6
6
  // https://vitejs.dev/config/
7
7
  export default defineConfig({
@@ -1,7 +1,7 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.1'
3
3
 
4
- import 'npm:svelte@^4.2.3'
4
+ import 'npm:svelte@^4.2.8'
5
5
 
6
6
  // https://vitejs.dev/config/
7
7
  export default defineConfig({
@@ -1,7 +1,7 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.1'
3
3
 
4
- import 'npm:svelte@^4.2.3'
4
+ import 'npm:svelte@^4.2.8'
5
5
 
6
6
  // https://vitejs.dev/config/
7
7
  export default defineConfig({
@@ -1,7 +1,7 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import vue from 'npm:@vitejs/plugin-vue@^4.5.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import vue from 'npm:@vitejs/plugin-vue@^4.5.2'
3
3
 
4
- import 'npm:vue@^3.3.8'
4
+ import 'npm:vue@^3.3.13'
5
5
 
6
6
  // https://vitejs.dev/config/
7
7
  export default defineConfig({
@@ -1,7 +1,7 @@
1
- import { defineConfig } from 'npm:vite@^5.0.0'
2
- import vue from 'npm:@vitejs/plugin-vue@^4.5.0'
1
+ import { defineConfig } from 'npm:vite@^5.0.10'
2
+ import vue from 'npm:@vitejs/plugin-vue@^4.5.2'
3
3
 
4
- import 'npm:vue@^3.3.8'
4
+ import 'npm:vue@^3.3.13'
5
5
 
6
6
  // https://vitejs.dev/config/
7
7
  export default defineConfig({
@@ -20,6 +20,6 @@
20
20
  "build": "vite build"
21
21
  },
22
22
  "devDependencies": {
23
- "vite": "^5.0.0"
23
+ "vite": "^5.0.10"
24
24
  }
25
25
  }
@@ -20,7 +20,7 @@
20
20
  "build": "tsc && vite build"
21
21
  },
22
22
  "devDependencies": {
23
- "typescript": "^5.2.2",
24
- "vite": "^5.0.0"
23
+ "typescript": "^5.3.3",
24
+ "vite": "^5.0.10"
25
25
  }
26
26
  }
@@ -7,7 +7,7 @@
7
7
  "skipLibCheck": true,
8
8
 
9
9
  /* Bundler mode */
10
- "moduleResolution": "bundler",
10
+ "moduleResolution": "Bundler",
11
11
  "allowImportingTsExtensions": true,
12
12
  "resolveJsonModule": true,
13
13
  "isolatedModules": true,
@@ -13,13 +13,13 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "preact": "^10.19.2",
16
+ "preact": "^10.19.3",
17
17
  "preact-render-to-string": "^6.3.1",
18
- "sirv": "^2.0.3"
18
+ "sirv": "^2.0.4"
19
19
  },
20
20
  "devDependencies": {
21
- "@preact/preset-vite": "^2.6.0",
21
+ "@preact/preset-vite": "^2.7.0",
22
22
  "cross-env": "^7.0.3",
23
- "vite": "^5.0.0"
23
+ "vite": "^5.0.10"
24
24
  }
25
25
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -13,16 +13,16 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "preact": "^10.19.2",
16
+ "preact": "^10.19.3",
17
17
  "preact-render-to-string": "^6.3.1",
18
- "sirv": "^2.0.3"
18
+ "sirv": "^2.0.4"
19
19
  },
20
20
  "devDependencies": {
21
- "@preact/preset-vite": "^2.6.0",
21
+ "@preact/preset-vite": "^2.7.0",
22
22
  "@types/express": "^4.17.21",
23
- "@types/node": "^20.9.0",
23
+ "@types/node": "^20.10.5",
24
24
  "cross-env": "^7.0.3",
25
- "typescript": "^5.2.2",
26
- "vite": "^5.0.0"
25
+ "typescript": "^5.3.3",
26
+ "vite": "^5.0.10"
27
27
  }
28
28
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -11,7 +11,7 @@
11
11
  },
12
12
 
13
13
  /* Bundler mode */
14
- "moduleResolution": "bundler",
14
+ "moduleResolution": "Bundler",
15
15
  "allowImportingTsExtensions": true,
16
16
  "resolveJsonModule": true,
17
17
  "isolatedModules": true,
@@ -3,13 +3,9 @@
3
3
  "composite": true,
4
4
  "skipLibCheck": true,
5
5
  "module": "ESNext",
6
- "moduleResolution": "bundler",
6
+ "moduleResolution": "Bundler",
7
7
  "allowSyntheticDefaultImports": true,
8
8
  "jsx": "preserve"
9
9
  },
10
- "include": [
11
- "vite.config.ts",
12
- "src/entry-server.tsx",
13
- "src/vite-env.d.ts"
14
- ]
10
+ "include": ["vite.config.ts"]
15
11
  }
@@ -15,13 +15,13 @@
15
15
  "express": "^4.18.2",
16
16
  "react": "^18.2.0",
17
17
  "react-dom": "^18.2.0",
18
- "sirv": "^2.0.3"
18
+ "sirv": "^2.0.4"
19
19
  },
20
20
  "devDependencies": {
21
- "@types/react": "^18.2.37",
22
- "@types/react-dom": "^18.2.15",
23
- "@vitejs/plugin-react": "^4.2.0",
21
+ "@types/react": "^18.2.45",
22
+ "@types/react-dom": "^18.2.18",
23
+ "@vitejs/plugin-react": "^4.2.1",
24
24
  "cross-env": "^7.0.3",
25
- "vite": "^5.0.0"
25
+ "vite": "^5.0.10"
26
26
  }
27
27
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -15,16 +15,16 @@
15
15
  "express": "^4.18.2",
16
16
  "react": "^18.2.0",
17
17
  "react-dom": "^18.2.0",
18
- "sirv": "^2.0.3"
18
+ "sirv": "^2.0.4"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/express": "^4.17.21",
22
- "@types/node": "^20.9.0",
23
- "@types/react": "^18.2.37",
24
- "@types/react-dom": "^18.2.15",
25
- "@vitejs/plugin-react": "^4.2.0",
22
+ "@types/node": "^20.10.5",
23
+ "@types/react": "^18.2.45",
24
+ "@types/react-dom": "^18.2.18",
25
+ "@vitejs/plugin-react": "^4.2.1",
26
26
  "cross-env": "^7.0.3",
27
- "typescript": "^5.2.2",
28
- "vite": "^5.0.0"
27
+ "typescript": "^5.3.3",
28
+ "vite": "^5.0.10"
29
29
  }
30
30
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -7,7 +7,7 @@
7
7
  "skipLibCheck": true,
8
8
 
9
9
  /* Bundler mode */
10
- "moduleResolution": "bundler",
10
+ "moduleResolution": "Bundler",
11
11
  "allowImportingTsExtensions": true,
12
12
  "resolveJsonModule": true,
13
13
  "isolatedModules": true,
@@ -3,13 +3,9 @@
3
3
  "composite": true,
4
4
  "skipLibCheck": true,
5
5
  "module": "ESNext",
6
- "moduleResolution": "bundler",
6
+ "moduleResolution": "Bundler",
7
7
  "allowSyntheticDefaultImports": true,
8
8
  "jsx": "preserve"
9
9
  },
10
- "include": [
11
- "vite.config.ts",
12
- "src/entry-server.tsx",
13
- "src/vite-env.d.ts"
14
- ]
10
+ "include": ["vite.config.ts"]
15
11
  }
@@ -13,12 +13,12 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3",
17
- "solid-js": "^1.8.5"
16
+ "sirv": "^2.0.4",
17
+ "solid-js": "^1.8.7"
18
18
  },
19
19
  "devDependencies": {
20
20
  "cross-env": "^7.0.3",
21
- "vite": "^5.0.0",
22
- "vite-plugin-solid": "^2.7.2"
21
+ "vite": "^5.0.10",
22
+ "vite-plugin-solid": "^2.8.0"
23
23
  }
24
24
  }
@@ -12,7 +12,7 @@ const templateHtml = isProduction
12
12
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
13
13
  : ''
14
14
  const ssrManifest = isProduction
15
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
15
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
16
16
  : undefined
17
17
 
18
18
  // Create http server
@@ -13,14 +13,14 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3",
17
- "solid-js": "^1.8.5"
16
+ "sirv": "^2.0.4",
17
+ "solid-js": "^1.8.7"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/express": "^4.17.21",
21
- "@types/node": "^20.9.0",
21
+ "@types/node": "^20.10.5",
22
22
  "cross-env": "^7.0.3",
23
- "vite": "^5.0.0",
24
- "vite-plugin-solid": "^2.7.2"
23
+ "vite": "^5.0.10",
24
+ "vite-plugin-solid": "^2.8.0"
25
25
  }
26
26
  }
@@ -12,7 +12,7 @@ const templateHtml = isProduction
12
12
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
13
13
  : ''
14
14
  const ssrManifest = isProduction
15
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
15
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
16
16
  : undefined
17
17
 
18
18
  // Create http server
@@ -7,7 +7,7 @@
7
7
  "skipLibCheck": true,
8
8
 
9
9
  /* Bundler mode */
10
- "moduleResolution": "bundler",
10
+ "moduleResolution": "Bundler",
11
11
  "allowImportingTsExtensions": true,
12
12
  "resolveJsonModule": true,
13
13
  "isolatedModules": true,
@@ -3,13 +3,9 @@
3
3
  "composite": true,
4
4
  "skipLibCheck": true,
5
5
  "module": "ESNext",
6
- "moduleResolution": "bundler",
6
+ "moduleResolution": "Bundler",
7
7
  "allowSyntheticDefaultImports": true,
8
8
  "jsx": "preserve"
9
9
  },
10
- "include": [
11
- "vite.config.ts",
12
- "src/entry-server.tsx",
13
- "src/vite-env.d.ts"
14
- ]
10
+ "include": ["vite.config.ts"]
15
11
  }
@@ -13,12 +13,12 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3"
16
+ "sirv": "^2.0.4"
17
17
  },
18
18
  "devDependencies": {
19
- "@sveltejs/vite-plugin-svelte": "^3.0.0",
19
+ "@sveltejs/vite-plugin-svelte": "^3.0.1",
20
20
  "cross-env": "^7.0.3",
21
- "svelte": "^4.2.3",
22
- "vite": "^5.0.0"
21
+ "svelte": "^4.2.8",
22
+ "vite": "^5.0.10"
23
23
  }
24
24
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -13,18 +13,18 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3"
16
+ "sirv": "^2.0.4"
17
17
  },
18
18
  "devDependencies": {
19
- "@sveltejs/vite-plugin-svelte": "^3.0.0",
19
+ "@sveltejs/vite-plugin-svelte": "^3.0.1",
20
20
  "@tsconfig/svelte": "^5.0.2",
21
21
  "@types/express": "^4.17.21",
22
- "@types/node": "^20.9.0",
22
+ "@types/node": "^20.10.5",
23
23
  "cross-env": "^7.0.3",
24
- "svelte": "^4.2.3",
25
- "svelte-check": "^3.6.0",
24
+ "svelte": "^4.2.8",
25
+ "svelte-check": "^3.6.2",
26
26
  "tslib": "^2.6.2",
27
- "typescript": "^5.2.2",
28
- "vite": "^5.0.0"
27
+ "typescript": "^5.3.3",
28
+ "vite": "^5.0.10"
29
29
  }
30
30
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -5,9 +5,5 @@
5
5
  "module": "ESNext",
6
6
  "moduleResolution": "bundler"
7
7
  },
8
- "include": [
9
- "vite.config.ts",
10
- "src/entry-server.ts",
11
- "src/vite-env.d.ts"
12
- ]
8
+ "include": ["vite.config.ts"]
13
9
  }
@@ -7,6 +7,6 @@
7
7
  "test": "node test"
8
8
  },
9
9
  "devDependencies": {
10
- "vite": "^5.0.0"
10
+ "vite": "^5.0.10"
11
11
  }
12
12
  }
@@ -13,10 +13,10 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3"
16
+ "sirv": "^2.0.4"
17
17
  },
18
18
  "devDependencies": {
19
19
  "cross-env": "^7.0.3",
20
- "vite": "^5.0.0"
20
+ "vite": "^5.0.10"
21
21
  }
22
22
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -13,13 +13,13 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3"
16
+ "sirv": "^2.0.4"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/express": "^4.17.21",
20
- "@types/node": "^20.9.0",
20
+ "@types/node": "^20.10.5",
21
21
  "cross-env": "^7.0.3",
22
- "typescript": "^5.2.2",
23
- "vite": "^5.0.0"
22
+ "typescript": "^5.3.3",
23
+ "vite": "^5.0.10"
24
24
  }
25
25
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -7,7 +7,7 @@
7
7
  "skipLibCheck": true,
8
8
 
9
9
  /* Bundler mode */
10
- "moduleResolution": "bundler",
10
+ "moduleResolution": "Bundler",
11
11
  "allowImportingTsExtensions": true,
12
12
  "resolveJsonModule": true,
13
13
  "isolatedModules": true,
@@ -19,7 +19,5 @@
19
19
  "noUnusedParameters": true,
20
20
  "noFallthroughCasesInSwitch": true
21
21
  },
22
- "include": ["src"],
23
- "exclude": ["src/entry-server.ts"],
24
- "references": [{ "path": "./tsconfig.node.json" }]
22
+ "include": ["src"]
25
23
  }
@@ -13,12 +13,12 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3",
17
- "vue": "^3.3.8"
16
+ "sirv": "^2.0.4",
17
+ "vue": "^3.3.13"
18
18
  },
19
19
  "devDependencies": {
20
- "@vitejs/plugin-vue": "^4.5.0",
20
+ "@vitejs/plugin-vue": "^4.5.2",
21
21
  "cross-env": "^7.0.3",
22
- "vite": "^5.0.0"
22
+ "vite": "^5.0.10"
23
23
  }
24
24
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -13,16 +13,16 @@
13
13
  "dependencies": {
14
14
  "compression": "^1.7.4",
15
15
  "express": "^4.18.2",
16
- "sirv": "^2.0.3",
17
- "vue": "^3.3.8"
16
+ "sirv": "^2.0.4",
17
+ "vue": "^3.3.13"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/express": "^4.17.21",
21
- "@types/node": "^20.9.0",
22
- "@vitejs/plugin-vue": "^4.5.0",
21
+ "@types/node": "^20.10.5",
22
+ "@vitejs/plugin-vue": "^4.5.2",
23
23
  "cross-env": "^7.0.3",
24
- "typescript": "^5.2.2",
25
- "vite": "^5.0.0",
26
- "vue-tsc": "^1.8.22"
24
+ "typescript": "^5.3.3",
25
+ "vite": "^5.0.10",
26
+ "vue-tsc": "^1.8.26"
27
27
  }
28
28
  }
@@ -11,7 +11,7 @@ const templateHtml = isProduction
11
11
  ? await fs.readFile('./dist/client/index.html', 'utf-8')
12
12
  : ''
13
13
  const ssrManifest = isProduction
14
- ? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
14
+ ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
15
15
  : undefined
16
16
 
17
17
  // Create http server
@@ -7,7 +7,7 @@
7
7
  "skipLibCheck": true,
8
8
 
9
9
  /* Bundler mode */
10
- "moduleResolution": "bundler",
10
+ "moduleResolution": "Bundler",
11
11
  "allowImportingTsExtensions": true,
12
12
  "resolveJsonModule": true,
13
13
  "isolatedModules": true,
@@ -3,12 +3,8 @@
3
3
  "composite": true,
4
4
  "skipLibCheck": true,
5
5
  "module": "ESNext",
6
- "moduleResolution": "bundler",
6
+ "moduleResolution": "Bundler",
7
7
  "allowSyntheticDefaultImports": true
8
8
  },
9
- "include": [
10
- "vite.config.ts",
11
- "src/entry-server.ts",
12
- "src/vite-env.d.ts"
13
- ]
9
+ "include": ["vite.config.ts"]
14
10
  }
@@ -1,13 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "composite": true,
4
- "skipLibCheck": true,
5
- "module": "ESNext",
6
- "moduleResolution": "bundler",
7
- "allowSyntheticDefaultImports": true
8
- },
9
- "include": [
10
- "src/entry-server.ts",
11
- "src/vite-env.d.ts"
12
- ]
13
- }