create-vite-extra 3.0.1 → 4.0.0
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/index.js +2 -2
- package/package.json +3 -3
- package/template-deno-lit/deno.json +3 -3
- package/template-deno-lit-ts/deno.json +3 -3
- package/template-deno-preact/deno.json +5 -5
- package/template-deno-preact-ts/deno.json +5 -5
- package/template-deno-react/deno.json +8 -8
- package/template-deno-react-ts/deno.json +8 -8
- package/template-deno-solid/deno.json +5 -5
- package/template-deno-solid-ts/deno.json +5 -5
- package/template-deno-svelte/deno.json +5 -5
- package/template-deno-svelte-ts/deno.json +5 -5
- package/template-deno-vanilla/deno.json +3 -3
- package/template-deno-vanilla-ts/deno.json +3 -3
- package/template-deno-vue/deno.json +5 -5
- package/template-deno-vue-ts/deno.json +5 -5
- package/template-library/package.json +1 -1
- package/template-library-ts/package.json +2 -2
- package/template-library-ts/tsconfig.json +3 -3
- package/template-ssr-preact/package.json +4 -4
- package/template-ssr-preact-ts/package.json +7 -7
- package/template-ssr-preact-ts/tsconfig.json +3 -3
- package/template-ssr-preact-ts/tsconfig.node.json +2 -2
- package/template-ssr-react/package.json +7 -7
- package/template-ssr-react-streaming/package.json +5 -5
- package/template-ssr-react-streaming-ts/package.json +10 -10
- package/template-ssr-react-streaming-ts/tsconfig.json +3 -3
- package/template-ssr-react-streaming-ts/tsconfig.node.json +2 -2
- package/template-ssr-react-ts/package.json +10 -10
- package/template-ssr-react-ts/tsconfig.json +3 -3
- package/template-ssr-react-ts/tsconfig.node.json +2 -2
- package/template-ssr-solid/package.json +4 -4
- package/template-ssr-solid-ts/package.json +6 -6
- package/template-ssr-solid-ts/tsconfig.json +3 -3
- package/template-ssr-solid-ts/tsconfig.node.json +2 -2
- package/template-ssr-svelte/jsconfig.json +2 -2
- package/template-ssr-svelte/package.json +4 -4
- package/template-ssr-svelte-ts/package.json +8 -8
- package/template-ssr-svelte-ts/tsconfig.json +2 -2
- package/template-ssr-svelte-ts/tsconfig.node.json +1 -1
- package/template-ssr-transform/package.json +1 -1
- package/template-ssr-vanilla/package.json +2 -2
- package/template-ssr-vanilla-ts/package.json +5 -5
- package/template-ssr-vanilla-ts/tsconfig.json +3 -3
- package/template-ssr-vue/package.json +4 -4
- package/template-ssr-vue-streaming/package.json +4 -4
- package/template-ssr-vue-streaming-ts/package.json +8 -8
- package/template-ssr-vue-streaming-ts/tsconfig.json +3 -3
- package/template-ssr-vue-streaming-ts/tsconfig.node.json +2 -2
- package/template-ssr-vue-ts/package.json +8 -8
- package/template-ssr-vue-ts/tsconfig.json +3 -3
- package/template-ssr-vue-ts/tsconfig.node.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## Scaffolding Your First Vite Project
|
|
4
4
|
|
|
5
5
|
> **Compatibility Note:**
|
|
6
|
-
> Vite requires [Node.js](https://nodejs.org
|
|
6
|
+
> Vite requires [Node.js](https://nodejs.org) version 20.19+, 22.12+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.
|
|
7
7
|
|
|
8
8
|
With NPM:
|
|
9
9
|
|
package/index.js
CHANGED
|
@@ -639,14 +639,14 @@ function setupReactSwc(root, { isTs, isDeno }) {
|
|
|
639
639
|
editFile(path.resolve(root, 'deno.json'), (content) => {
|
|
640
640
|
return content.replace(
|
|
641
641
|
/"@vitejs\/plugin-react": ".+?"/,
|
|
642
|
-
`"@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.
|
|
642
|
+
`"@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.10.2"`,
|
|
643
643
|
)
|
|
644
644
|
})
|
|
645
645
|
} else {
|
|
646
646
|
editFile(path.resolve(root, 'package.json'), (content) => {
|
|
647
647
|
return content.replace(
|
|
648
648
|
/"@vitejs\/plugin-react": ".+?"/,
|
|
649
|
-
`"@vitejs/plugin-react-swc": "^3.
|
|
649
|
+
`"@vitejs/plugin-react-swc": "^3.10.2"`,
|
|
650
650
|
)
|
|
651
651
|
})
|
|
652
652
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vite-extra",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Bjorn Lu",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
],
|
|
19
19
|
"main": "index.js",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": "^
|
|
21
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"prompts": "^2.4.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"prettier": "^3.
|
|
37
|
+
"prettier": "^3.6.2"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"format": "prettier --write .",
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
"build": "deno run -A --node-modules-dir npm:vite build"
|
|
5
5
|
},
|
|
6
6
|
"compilerOptions": {
|
|
7
|
-
"lib": ["
|
|
7
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
8
8
|
},
|
|
9
9
|
"imports": {
|
|
10
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
10
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
11
11
|
"lit": "npm:lit@^3.2.1",
|
|
12
|
-
"vite": "npm:vite@^
|
|
12
|
+
"vite": "npm:vite@^7.0.0"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"build": "deno run -A --node-modules-dir npm:vite build"
|
|
5
5
|
},
|
|
6
6
|
"compilerOptions": {
|
|
7
|
-
"lib": ["
|
|
7
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
8
8
|
"experimentalDecorators": true
|
|
9
9
|
},
|
|
10
10
|
"imports": {
|
|
11
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
11
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
12
12
|
"lit": "npm:lit@^3.2.1",
|
|
13
|
-
"vite": "npm:vite@^
|
|
13
|
+
"vite": "npm:vite@^7.0.0"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
10
10
|
"jsx": "react-jsx",
|
|
11
11
|
"jsxImportSource": "preact"
|
|
12
12
|
},
|
|
13
13
|
"imports": {
|
|
14
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
15
|
-
"@preact/preset-vite": "npm:@preact/preset-vite@^2.10.
|
|
16
|
-
"preact": "npm:preact@^10.26.
|
|
17
|
-
"vite": "npm:vite@^
|
|
14
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
15
|
+
"@preact/preset-vite": "npm:@preact/preset-vite@^2.10.2",
|
|
16
|
+
"preact": "npm:preact@^10.26.9",
|
|
17
|
+
"vite": "npm:vite@^7.0.0"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
10
10
|
"jsx": "react-jsx",
|
|
11
11
|
"jsxImportSource": "preact"
|
|
12
12
|
},
|
|
13
13
|
"imports": {
|
|
14
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
15
|
-
"@preact/preset-vite": "npm:@preact/preset-vite@^2.10.
|
|
16
|
-
"preact": "npm:preact@^10.26.
|
|
17
|
-
"vite": "npm:vite@^
|
|
14
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
15
|
+
"@preact/preset-vite": "npm:@preact/preset-vite@^2.10.2",
|
|
16
|
+
"preact": "npm:preact@^10.26.9",
|
|
17
|
+
"vite": "npm:vite@^7.0.0"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
10
10
|
"jsx": "react-jsx",
|
|
11
11
|
"jsxImportSource": "react",
|
|
12
12
|
"jsxImportSourceTypes": "@types/react"
|
|
13
13
|
},
|
|
14
14
|
"imports": {
|
|
15
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
16
|
-
"@types/react": "npm:@types/react@^19.
|
|
17
|
-
"@types/react-dom": "npm:@types/react-dom@^19.
|
|
18
|
-
"@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.
|
|
19
|
-
"react": "npm:react@^19.
|
|
20
|
-
"react-dom": "npm:react-dom@^19.
|
|
21
|
-
"vite": "npm:vite@^
|
|
15
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
16
|
+
"@types/react": "npm:@types/react@^19.1.8",
|
|
17
|
+
"@types/react-dom": "npm:@types/react-dom@^19.1.6",
|
|
18
|
+
"@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.6.0",
|
|
19
|
+
"react": "npm:react@^19.1.0",
|
|
20
|
+
"react-dom": "npm:react-dom@^19.1.0",
|
|
21
|
+
"vite": "npm:vite@^7.0.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
10
10
|
"jsx": "react-jsx",
|
|
11
11
|
"jsxImportSource": "react",
|
|
12
12
|
"jsxImportSourceTypes": "@types/react"
|
|
13
13
|
},
|
|
14
14
|
"imports": {
|
|
15
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
16
|
-
"@types/react": "npm:@types/react@^19.
|
|
17
|
-
"@types/react-dom": "npm:@types/react-dom@^19.
|
|
18
|
-
"@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.
|
|
19
|
-
"react": "npm:react@^19.
|
|
20
|
-
"react-dom": "npm:react-dom@^19.
|
|
21
|
-
"vite": "npm:vite@^
|
|
15
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
16
|
+
"@types/react": "npm:@types/react@^19.1.8",
|
|
17
|
+
"@types/react-dom": "npm:@types/react-dom@^19.1.6",
|
|
18
|
+
"@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.6.0",
|
|
19
|
+
"react": "npm:react@^19.1.0",
|
|
20
|
+
"react-dom": "npm:react-dom@^19.1.0",
|
|
21
|
+
"vite": "npm:vite@^7.0.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
10
10
|
"jsx": "react-jsx",
|
|
11
11
|
"jsxImportSource": "solid-js"
|
|
12
12
|
},
|
|
13
13
|
"imports": {
|
|
14
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
15
|
-
"solid-js": "npm:solid-js@^1.9.
|
|
16
|
-
"vite": "npm:vite@^
|
|
17
|
-
"vite-plugin-solid": "npm:vite-plugin-solid@^2.11.
|
|
14
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
15
|
+
"solid-js": "npm:solid-js@^1.9.7",
|
|
16
|
+
"vite": "npm:vite@^7.0.0",
|
|
17
|
+
"vite-plugin-solid": "npm:vite-plugin-solid@^2.11.7"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
10
10
|
"jsx": "react-jsx",
|
|
11
11
|
"jsxImportSource": "solid-js"
|
|
12
12
|
},
|
|
13
13
|
"imports": {
|
|
14
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
15
|
-
"solid-js": "npm:solid-js@^1.9.
|
|
16
|
-
"vite": "npm:vite@^
|
|
17
|
-
"vite-plugin-solid": "npm:vite-plugin-solid@^2.11.
|
|
14
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
15
|
+
"solid-js": "npm:solid-js@^1.9.7",
|
|
16
|
+
"vite": "npm:vite@^7.0.0",
|
|
17
|
+
"vite-plugin-solid": "npm:vite-plugin-solid@^2.11.7"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
10
10
|
},
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
13
|
-
"@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0
|
|
14
|
-
"svelte": "npm:svelte@^5.
|
|
15
|
-
"vite": "npm:vite@^
|
|
12
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
13
|
+
"@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.1.0",
|
|
14
|
+
"svelte": "npm:svelte@^5.34.9",
|
|
15
|
+
"vite": "npm:vite@^7.0.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
10
10
|
},
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
13
|
-
"@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0
|
|
14
|
-
"svelte": "npm:svelte@^5.
|
|
15
|
-
"vite": "npm:vite@^
|
|
12
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
13
|
+
"@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.1.0",
|
|
14
|
+
"svelte": "npm:svelte@^5.34.9",
|
|
15
|
+
"vite": "npm:vite@^7.0.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
10
10
|
},
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
13
|
-
"vite": "npm:vite@^
|
|
12
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
13
|
+
"vite": "npm:vite@^7.0.0"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
10
10
|
},
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
13
|
-
"vite": "npm:vite@^
|
|
12
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
13
|
+
"vite": "npm:vite@^7.0.0"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
10
10
|
},
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
13
|
-
"@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^
|
|
14
|
-
"vite": "npm:vite@^
|
|
15
|
-
"vue": "npm:vue@^3.5.
|
|
12
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
13
|
+
"@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^6.0.0",
|
|
14
|
+
"vite": "npm:vite@^7.0.0",
|
|
15
|
+
"vue": "npm:vue@^3.5.17"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
|
|
7
7
|
},
|
|
8
8
|
"compilerOptions": {
|
|
9
|
-
"lib": ["
|
|
9
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
|
10
10
|
},
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.
|
|
13
|
-
"@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^
|
|
14
|
-
"vite": "npm:vite@^
|
|
15
|
-
"vue": "npm:vue@^3.5.
|
|
12
|
+
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
|
|
13
|
+
"@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^6.0.0",
|
|
14
|
+
"vite": "npm:vite@^7.0.0",
|
|
15
|
+
"vue": "npm:vue@^3.5.17"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"module": "
|
|
6
|
-
"lib": ["
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
16
|
-
"preact": "^10.26.
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"preact": "^10.26.9",
|
|
17
17
|
"preact-render-to-string": "^6.5.13",
|
|
18
18
|
"sirv": "^3.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.10.
|
|
21
|
+
"@preact/preset-vite": "^2.10.2",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^
|
|
23
|
+
"vite": "^7.0.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
16
|
-
"preact": "^10.26.
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"preact": "^10.26.9",
|
|
17
17
|
"preact-render-to-string": "^6.5.13",
|
|
18
18
|
"sirv": "^3.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.10.
|
|
22
|
-
"@types/express": "^5.0.
|
|
23
|
-
"@types/node": "^
|
|
21
|
+
"@preact/preset-vite": "^2.10.2",
|
|
22
|
+
"@types/express": "^5.0.3",
|
|
23
|
+
"@types/node": "^24.0.10",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"typescript": "~5.
|
|
26
|
-
"vite": "^
|
|
25
|
+
"typescript": "~5.8.3",
|
|
26
|
+
"vite": "^7.0.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"module": "
|
|
6
|
-
"lib": ["
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
"paths": {
|
|
9
9
|
"react": ["./node_modules/preact/compat/"],
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"composite": true,
|
|
4
4
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2023",
|
|
6
6
|
"lib": ["ES2023"],
|
|
7
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
16
|
-
"react": "^19.
|
|
17
|
-
"react-dom": "^19.
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"react": "^19.1.0",
|
|
17
|
+
"react-dom": "^19.1.0",
|
|
18
18
|
"sirv": "^3.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/react": "^19.
|
|
22
|
-
"@types/react-dom": "^19.
|
|
23
|
-
"@vitejs/plugin-react": "^4.
|
|
21
|
+
"@types/react": "^19.1.8",
|
|
22
|
+
"@types/react-dom": "^19.1.6",
|
|
23
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"vite": "^
|
|
25
|
+
"vite": "^7.0.0"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
16
|
-
"react": "^19.
|
|
17
|
-
"react-dom": "^19.
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"react": "^19.1.0",
|
|
17
|
+
"react-dom": "^19.1.0",
|
|
18
18
|
"sirv": "^3.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@vitejs/plugin-react": "^4.
|
|
21
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^
|
|
23
|
+
"vite": "^7.0.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
16
|
-
"react": "^19.
|
|
17
|
-
"react-dom": "^19.
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"react": "^19.1.0",
|
|
17
|
+
"react-dom": "^19.1.0",
|
|
18
18
|
"sirv": "^3.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/express": "^5.0.
|
|
22
|
-
"@types/node": "^
|
|
23
|
-
"@types/react": "^19.
|
|
24
|
-
"@types/react-dom": "^19.
|
|
25
|
-
"@vitejs/plugin-react": "^4.
|
|
21
|
+
"@types/express": "^5.0.3",
|
|
22
|
+
"@types/node": "^24.0.10",
|
|
23
|
+
"@types/react": "^19.1.8",
|
|
24
|
+
"@types/react-dom": "^19.1.6",
|
|
25
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
26
26
|
"cross-env": "^7.0.3",
|
|
27
|
-
"typescript": "~5.
|
|
28
|
-
"vite": "^
|
|
27
|
+
"typescript": "~5.8.3",
|
|
28
|
+
"vite": "^7.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"module": "
|
|
6
|
-
"lib": ["
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"composite": true,
|
|
4
4
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2023",
|
|
6
6
|
"lib": ["ES2023"],
|
|
7
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
16
|
-
"react": "^19.
|
|
17
|
-
"react-dom": "^19.
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"react": "^19.1.0",
|
|
17
|
+
"react-dom": "^19.1.0",
|
|
18
18
|
"sirv": "^3.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/express": "^5.0.
|
|
22
|
-
"@types/node": "^
|
|
23
|
-
"@types/react": "^19.
|
|
24
|
-
"@types/react-dom": "^19.
|
|
25
|
-
"@vitejs/plugin-react": "^4.
|
|
21
|
+
"@types/express": "^5.0.3",
|
|
22
|
+
"@types/node": "^24.0.10",
|
|
23
|
+
"@types/react": "^19.1.8",
|
|
24
|
+
"@types/react-dom": "^19.1.6",
|
|
25
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
26
26
|
"cross-env": "^7.0.3",
|
|
27
|
-
"typescript": "~5.
|
|
28
|
-
"vite": "^
|
|
27
|
+
"typescript": "~5.8.3",
|
|
28
|
+
"vite": "^7.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"module": "
|
|
6
|
-
"lib": ["
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"composite": true,
|
|
4
4
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2023",
|
|
6
6
|
"lib": ["ES2023"],
|
|
7
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1",
|
|
17
|
-
"solid-js": "^1.9.
|
|
17
|
+
"solid-js": "^1.9.7"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"vite": "^
|
|
22
|
-
"vite-plugin-solid": "^2.11.
|
|
21
|
+
"vite": "^7.0.0",
|
|
22
|
+
"vite-plugin-solid": "^2.11.7"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1",
|
|
17
|
-
"solid-js": "^1.9.
|
|
17
|
+
"solid-js": "^1.9.7"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types/express": "^5.0.
|
|
21
|
-
"@types/node": "^
|
|
20
|
+
"@types/express": "^5.0.3",
|
|
21
|
+
"@types/node": "^24.0.10",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^
|
|
24
|
-
"vite-plugin-solid": "^2.11.
|
|
23
|
+
"vite": "^7.0.0",
|
|
24
|
+
"vite-plugin-solid": "^2.11.7"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"module": "
|
|
6
|
-
"lib": ["
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"composite": true,
|
|
4
4
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2023",
|
|
6
6
|
"lib": ["ES2023"],
|
|
7
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"moduleResolution": "bundler",
|
|
4
|
-
"target": "
|
|
5
|
-
"module": "
|
|
4
|
+
"target": "esnext",
|
|
5
|
+
"module": "esnext",
|
|
6
6
|
/**
|
|
7
7
|
* svelte-preprocess cannot figure out whether you have
|
|
8
8
|
* a value or a type, so tell TypeScript to enforce using
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^5.0
|
|
19
|
+
"@sveltejs/vite-plugin-svelte": "^5.1.0",
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"svelte": "^5.
|
|
22
|
-
"vite": "^
|
|
21
|
+
"svelte": "^5.34.9",
|
|
22
|
+
"vite": "^7.0.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -13,19 +13,19 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"compression": "^1.8.0",
|
|
16
|
-
"express": "^5.0
|
|
16
|
+
"express": "^5.1.0",
|
|
17
17
|
"sirv": "^3.0.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@sveltejs/vite-plugin-svelte": "^5.0
|
|
20
|
+
"@sveltejs/vite-plugin-svelte": "^5.1.0",
|
|
21
21
|
"@tsconfig/svelte": "^5.0.4",
|
|
22
|
-
"@types/express": "^5.0.
|
|
23
|
-
"@types/node": "^
|
|
22
|
+
"@types/express": "^5.0.3",
|
|
23
|
+
"@types/node": "^24.0.10",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"svelte": "^5.
|
|
26
|
-
"svelte-check": "^4.
|
|
25
|
+
"svelte": "^5.34.9",
|
|
26
|
+
"svelte-check": "^4.2.2",
|
|
27
27
|
"tslib": "^2.8.1",
|
|
28
|
-
"typescript": "~5.
|
|
29
|
-
"vite": "^
|
|
28
|
+
"typescript": "~5.8.3",
|
|
29
|
+
"vite": "^7.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"target": "
|
|
4
|
+
"target": "esnext",
|
|
5
5
|
"useDefineForClassFields": true,
|
|
6
|
-
"module": "
|
|
6
|
+
"module": "esnext",
|
|
7
7
|
"resolveJsonModule": true,
|
|
8
8
|
/**
|
|
9
9
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/express": "^5.0.
|
|
20
|
-
"@types/node": "^
|
|
19
|
+
"@types/express": "^5.0.3",
|
|
20
|
+
"@types/node": "^24.0.10",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"typescript": "~5.
|
|
23
|
-
"vite": "^
|
|
22
|
+
"typescript": "~5.8.3",
|
|
23
|
+
"vite": "^7.0.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"module": "
|
|
6
|
-
"lib": ["
|
|
5
|
+
"module": "esnext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1",
|
|
17
|
-
"vue": "^3.5.
|
|
17
|
+
"vue": "^3.5.17"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@vitejs/plugin-vue": "^
|
|
20
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"vite": "^
|
|
22
|
+
"vite": "^7.0.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1",
|
|
17
|
-
"vue": "^3.5.
|
|
17
|
+
"vue": "^3.5.17"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@vitejs/plugin-vue": "^
|
|
20
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"vite": "^
|
|
22
|
+
"vite": "^7.0.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.8.0",
|
|
15
|
-
"express": "^5.0
|
|
15
|
+
"express": "^5.1.0",
|
|
16
16
|
"sirv": "^3.0.1",
|
|
17
|
-
"vue": "^3.5.
|
|
17
|
+
"vue": "^3.5.17"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types/express": "^5.0.
|
|
21
|
-
"@types/node": "^
|
|
22
|
-
"@vitejs/plugin-vue": "^
|
|
20
|
+
"@types/express": "^5.0.3",
|
|
21
|
+
"@types/node": "^24.0.10",
|
|
22
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
23
23
|
"cross-env": "^7.0.3",
|
|
24
|
-
"typescript": "~5.
|
|
25
|
-
"vite": "^
|
|
26
|
-
"vue-tsc": "^2.2.
|
|
24
|
+
"typescript": "~5.8.3",
|
|
25
|
+
"vite": "^7.0.0",
|
|
26
|
+
"vue-tsc": "^2.2.12"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"lib": ["
|
|
6
|
-
"module": "
|
|
5
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
6
|
+
"module": "esnext",
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"composite": true,
|
|
4
4
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2023",
|
|
6
6
|
"lib": ["ES2023"],
|
|
7
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"compression": "^1.8.0",
|
|
16
|
-
"express": "^5.0
|
|
16
|
+
"express": "^5.1.0",
|
|
17
17
|
"sirv": "^3.0.1",
|
|
18
|
-
"vue": "^3.5.
|
|
18
|
+
"vue": "^3.5.17"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/express": "^5.0.
|
|
22
|
-
"@types/node": "^
|
|
23
|
-
"@vitejs/plugin-vue": "^
|
|
21
|
+
"@types/express": "^5.0.3",
|
|
22
|
+
"@types/node": "^24.0.10",
|
|
23
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"typescript": "~5.
|
|
26
|
-
"vite": "^
|
|
27
|
-
"vue-tsc": "^2.2.
|
|
25
|
+
"typescript": "~5.8.3",
|
|
26
|
+
"vite": "^7.0.0",
|
|
27
|
+
"vue-tsc": "^2.2.12"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
3
|
+
"target": "es2022",
|
|
4
4
|
"useDefineForClassFields": true,
|
|
5
|
-
"lib": ["
|
|
6
|
-
"module": "
|
|
5
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
6
|
+
"module": "esnext",
|
|
7
7
|
"skipLibCheck": true,
|
|
8
8
|
|
|
9
9
|
/* Bundler mode */
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"composite": true,
|
|
4
4
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2023",
|
|
6
6
|
"lib": ["ES2023"],
|
|
7
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|