create-rspeedy-canary 0.11.0-canary-20250827-518013a7 → 0.11.0-canary-20250827-d70efba5
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/CHANGELOG.md +5 -1
- package/package.json +3 -3
- package/template-common/gitignore +3 -0
- package/template-react-ts/src/tsconfig.json +15 -0
- package/template-react-ts/tsconfig.json +5 -6
- package/template-react-ts/tsconfig.node.json +18 -0
- package/template-react-vitest-rltl-ts/src/tsconfig.json +15 -0
- package/template-react-vitest-rltl-ts/tsconfig.json +7 -7
- package/template-react-vitest-rltl-ts/tsconfig.node.json +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# create-rspeedy
|
|
2
2
|
|
|
3
|
-
## 0.11.0-canary-
|
|
3
|
+
## 0.11.0-canary-20250827103843-d70efba55e52e9e220d1e3691b06f0d1e4f4e26d
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Use TypeScript [Project References](https://www.typescriptlang.org/docs/handbook/project-references.html) in templates. ([#1612](https://github.com/lynx-family/lynx-stack/pull/1612))
|
|
4
8
|
|
|
5
9
|
## 0.10.8
|
|
6
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rspeedy-canary",
|
|
3
|
-
"version": "0.11.0-canary-20250827-
|
|
3
|
+
"version": "0.11.0-canary-20250827-d70efba5",
|
|
4
4
|
"description": "Create Rspeedy-powered ReactLynx apps with one command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@rsbuild/plugin-type-check": "1.2.4",
|
|
38
38
|
"@lynx-js/react": "npm:@lynx-js/react-canary@^0.112.4",
|
|
39
|
+
"@lynx-js/qrcode-rsbuild-plugin": "npm:@lynx-js/qrcode-rsbuild-plugin-canary@^0.4.1",
|
|
39
40
|
"@lynx-js/react-rsbuild-plugin": "npm:@lynx-js/react-rsbuild-plugin-canary@^0.10.13",
|
|
40
|
-
"@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.11.0-canary-20250827-
|
|
41
|
-
"@lynx-js/qrcode-rsbuild-plugin": "npm:@lynx-js/qrcode-rsbuild-plugin-canary@^0.4.1"
|
|
41
|
+
"@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.11.0-canary-20250827-d70efba5"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=18"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
|
|
6
|
+
"jsx": "react-jsx",
|
|
7
|
+
"jsxImportSource": "@lynx-js/react",
|
|
8
|
+
|
|
9
|
+
"module": "ESNext",
|
|
10
|
+
"moduleResolution": "Bundler",
|
|
11
|
+
|
|
12
|
+
"noEmit": true,
|
|
13
|
+
},
|
|
14
|
+
"include": ["./**/*.ts", "./**/*.tsx"],
|
|
15
|
+
}
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"jsx": "react-jsx",
|
|
4
|
-
"jsxImportSource": "@lynx-js/react",
|
|
5
|
-
"module": "node16",
|
|
6
|
-
"moduleResolution": "node16",
|
|
7
|
-
|
|
8
3
|
"strict": true,
|
|
9
4
|
"isolatedModules": true,
|
|
10
5
|
"verbatimModuleSyntax": true,
|
|
@@ -12,5 +7,9 @@
|
|
|
12
7
|
"esModuleInterop": true,
|
|
13
8
|
"skipLibCheck": true,
|
|
14
9
|
},
|
|
15
|
-
"
|
|
10
|
+
"references": [
|
|
11
|
+
{ "path": "./tsconfig.node.json" },
|
|
12
|
+
{ "path": "./src" },
|
|
13
|
+
],
|
|
14
|
+
"files": [],
|
|
16
15
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
|
|
6
|
+
// Rspeedy uses Node.js's module resolution
|
|
7
|
+
"module": "node16",
|
|
8
|
+
"moduleResolution": "node16",
|
|
9
|
+
"erasableSyntaxOnly": true,
|
|
10
|
+
|
|
11
|
+
// Node.js 18+
|
|
12
|
+
"lib": ["es2023"],
|
|
13
|
+
"target": "es2022",
|
|
14
|
+
|
|
15
|
+
"noEmit": true,
|
|
16
|
+
},
|
|
17
|
+
"include": ["./lynx.config.ts"],
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
|
|
6
|
+
"jsx": "react-jsx",
|
|
7
|
+
"jsxImportSource": "@lynx-js/react",
|
|
8
|
+
|
|
9
|
+
"module": "ESNext",
|
|
10
|
+
"moduleResolution": "Bundler",
|
|
11
|
+
|
|
12
|
+
"noEmit": true,
|
|
13
|
+
},
|
|
14
|
+
"include": ["./**/*.ts", "./**/*.tsx"],
|
|
15
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"jsx": "react-jsx",
|
|
4
|
-
"jsxImportSource": "@lynx-js/react",
|
|
5
|
-
|
|
6
|
-
"module": "node18",
|
|
7
|
-
"moduleResolution": "node16",
|
|
8
|
-
|
|
9
3
|
"strict": true,
|
|
10
4
|
"isolatedModules": true,
|
|
11
5
|
"verbatimModuleSyntax": true,
|
|
12
6
|
|
|
13
7
|
"esModuleInterop": true,
|
|
14
8
|
"skipLibCheck": true,
|
|
9
|
+
|
|
10
|
+
"noEmit": true,
|
|
15
11
|
},
|
|
16
|
-
"
|
|
12
|
+
"references": [
|
|
13
|
+
{ "path": "./tsconfig.node.json" },
|
|
14
|
+
{ "path": "./src" },
|
|
15
|
+
],
|
|
16
|
+
"files": [],
|
|
17
17
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
|
|
6
|
+
// Rspeedy uses Node.js's module resolution
|
|
7
|
+
"module": "node16",
|
|
8
|
+
"moduleResolution": "node16",
|
|
9
|
+
"erasableSyntaxOnly": true,
|
|
10
|
+
|
|
11
|
+
// Node.js 18+
|
|
12
|
+
"lib": ["es2023"],
|
|
13
|
+
"target": "es2022",
|
|
14
|
+
|
|
15
|
+
"noEmit": true,
|
|
16
|
+
},
|
|
17
|
+
"include": [
|
|
18
|
+
"./lynx.config.ts",
|
|
19
|
+
"./vitest.config.ts",
|
|
20
|
+
],
|
|
21
|
+
}
|