create-vite-extra 2.0.1 → 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.
- package/package.json +1 -1
- package/template-deno-lit/vite.config.mjs +1 -1
- package/template-deno-lit-ts/vite.config.mts +1 -1
- package/template-deno-preact/vite.config.mjs +4 -4
- package/template-deno-preact-ts/vite.config.mts +4 -4
- package/template-deno-react/vite.config.mjs +2 -2
- package/template-deno-react-ts/vite.config.mts +2 -2
- package/template-deno-solid/vite.config.mjs +3 -3
- package/template-deno-solid-ts/vite.config.mts +3 -3
- package/template-deno-svelte/vite.config.mjs +3 -3
- package/template-deno-svelte-ts/vite.config.mts +3 -3
- package/template-deno-vue/vite.config.mjs +3 -3
- package/template-deno-vue-ts/vite.config.mts +3 -3
- package/template-library/package.json +1 -1
- package/template-library-ts/package.json +2 -2
- package/template-library-ts/tsconfig.json +1 -1
- package/template-ssr-preact/package.json +4 -4
- package/template-ssr-preact-ts/package.json +6 -6
- package/template-ssr-preact-ts/tsconfig.json +1 -1
- package/template-ssr-preact-ts/tsconfig.node.json +2 -6
- package/template-ssr-react/package.json +5 -5
- package/template-ssr-react-ts/package.json +7 -7
- package/template-ssr-react-ts/tsconfig.json +1 -1
- package/template-ssr-react-ts/tsconfig.node.json +2 -6
- package/template-ssr-solid/package.json +4 -4
- package/template-ssr-solid-ts/package.json +5 -5
- package/template-ssr-solid-ts/tsconfig.json +1 -1
- package/template-ssr-solid-ts/tsconfig.node.json +2 -6
- package/template-ssr-svelte/package.json +4 -4
- package/template-ssr-svelte-ts/package.json +7 -7
- package/template-ssr-svelte-ts/tsconfig.node.json +1 -5
- package/template-ssr-transform/package.json +1 -1
- package/template-ssr-vanilla/package.json +2 -2
- package/template-ssr-vanilla-ts/package.json +4 -4
- package/template-ssr-vanilla-ts/tsconfig.json +2 -4
- package/template-ssr-vue/package.json +4 -4
- package/template-ssr-vue-ts/package.json +7 -7
- package/template-ssr-vue-ts/tsconfig.json +1 -1
- package/template-ssr-vue-ts/tsconfig.node.json +2 -6
- package/template-ssr-vanilla-ts/tsconfig.node.json +0 -13
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import preact from 'npm:@preact/preset-vite@^2.
|
|
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.
|
|
5
|
-
import 'npm:preact@^10.19.
|
|
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.
|
|
2
|
-
import preact from 'npm:@preact/preset-vite@^2.
|
|
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.
|
|
5
|
-
import 'npm:preact@^10.19.
|
|
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.
|
|
2
|
-
import react from 'npm:@vitejs/plugin-react@^4.2.
|
|
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.
|
|
2
|
-
import react from 'npm:@vitejs/plugin-react@^4.2.
|
|
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.
|
|
2
|
-
import solid from 'npm:vite-plugin-solid@^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.
|
|
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.
|
|
2
|
-
import solid from 'npm:vite-plugin-solid@^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.
|
|
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.
|
|
2
|
-
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.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.
|
|
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.
|
|
2
|
-
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.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.
|
|
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.
|
|
2
|
-
import vue from 'npm:@vitejs/plugin-vue@^4.5.
|
|
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.
|
|
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.
|
|
2
|
-
import vue from 'npm:@vitejs/plugin-vue@^4.5.
|
|
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.
|
|
4
|
+
import 'npm:vue@^3.3.13'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"preact": "^10.19.
|
|
16
|
+
"preact": "^10.19.3",
|
|
17
17
|
"preact-render-to-string": "^6.3.1",
|
|
18
|
-
"sirv": "^2.0.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.
|
|
21
|
+
"@preact/preset-vite": "^2.7.0",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^5.0.
|
|
23
|
+
"vite": "^5.0.10"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"preact": "^10.19.
|
|
16
|
+
"preact": "^10.19.3",
|
|
17
17
|
"preact-render-to-string": "^6.3.1",
|
|
18
|
-
"sirv": "^2.0.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.
|
|
21
|
+
"@preact/preset-vite": "^2.7.0",
|
|
22
22
|
"@types/express": "^4.17.21",
|
|
23
|
-
"@types/node": "^20.
|
|
23
|
+
"@types/node": "^20.10.5",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"typescript": "^5.
|
|
26
|
-
"vite": "^5.0.
|
|
25
|
+
"typescript": "^5.3.3",
|
|
26
|
+
"vite": "^5.0.10"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
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.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/react": "^18.2.
|
|
22
|
-
"@types/react-dom": "^18.2.
|
|
23
|
-
"@vitejs/plugin-react": "^4.2.
|
|
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.
|
|
25
|
+
"vite": "^5.0.10"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -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.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/express": "^4.17.21",
|
|
22
|
-
"@types/node": "^20.
|
|
23
|
-
"@types/react": "^18.2.
|
|
24
|
-
"@types/react-dom": "^18.2.
|
|
25
|
-
"@vitejs/plugin-react": "^4.2.
|
|
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.
|
|
28
|
-
"vite": "^5.0.
|
|
27
|
+
"typescript": "^5.3.3",
|
|
28
|
+
"vite": "^5.0.10"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
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.
|
|
17
|
-
"solid-js": "^1.8.
|
|
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.
|
|
22
|
-
"vite-plugin-solid": "^2.
|
|
21
|
+
"vite": "^5.0.10",
|
|
22
|
+
"vite-plugin-solid": "^2.8.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
17
|
-
"solid-js": "^1.8.
|
|
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.
|
|
21
|
+
"@types/node": "^20.10.5",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^5.0.
|
|
24
|
-
"vite-plugin-solid": "^2.
|
|
23
|
+
"vite": "^5.0.10",
|
|
24
|
+
"vite-plugin-solid": "^2.8.0"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
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.
|
|
16
|
+
"sirv": "^2.0.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^3.0.
|
|
19
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"svelte": "^4.2.
|
|
22
|
-
"vite": "^5.0.
|
|
21
|
+
"svelte": "^4.2.8",
|
|
22
|
+
"vite": "^5.0.10"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -13,18 +13,18 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
16
|
+
"sirv": "^2.0.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^3.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.
|
|
22
|
+
"@types/node": "^20.10.5",
|
|
23
23
|
"cross-env": "^7.0.3",
|
|
24
|
-
"svelte": "^4.2.
|
|
25
|
-
"svelte-check": "^3.6.
|
|
24
|
+
"svelte": "^4.2.8",
|
|
25
|
+
"svelte-check": "^3.6.2",
|
|
26
26
|
"tslib": "^2.6.2",
|
|
27
|
-
"typescript": "^5.
|
|
28
|
-
"vite": "^5.0.
|
|
27
|
+
"typescript": "^5.3.3",
|
|
28
|
+
"vite": "^5.0.10"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
16
|
+
"sirv": "^2.0.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/express": "^4.17.21",
|
|
20
|
-
"@types/node": "^20.
|
|
20
|
+
"@types/node": "^20.10.5",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"typescript": "^5.
|
|
23
|
-
"vite": "^5.0.
|
|
22
|
+
"typescript": "^5.3.3",
|
|
23
|
+
"vite": "^5.0.10"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
10
|
-
"moduleResolution": "
|
|
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.
|
|
17
|
-
"vue": "^3.3.
|
|
16
|
+
"sirv": "^2.0.4",
|
|
17
|
+
"vue": "^3.3.13"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@vitejs/plugin-vue": "^4.5.
|
|
20
|
+
"@vitejs/plugin-vue": "^4.5.2",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"vite": "^5.0.
|
|
22
|
+
"vite": "^5.0.10"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
17
|
-
"vue": "^3.3.
|
|
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.
|
|
22
|
-
"@vitejs/plugin-vue": "^4.5.
|
|
21
|
+
"@types/node": "^20.10.5",
|
|
22
|
+
"@vitejs/plugin-vue": "^4.5.2",
|
|
23
23
|
"cross-env": "^7.0.3",
|
|
24
|
-
"typescript": "^5.
|
|
25
|
-
"vite": "^5.0.
|
|
26
|
-
"vue-tsc": "^1.8.
|
|
24
|
+
"typescript": "^5.3.3",
|
|
25
|
+
"vite": "^5.0.10",
|
|
26
|
+
"vue-tsc": "^1.8.26"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -3,12 +3,8 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
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
|
}
|