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 CHANGED
@@ -1,6 +1,10 @@
1
1
  # create-rspeedy
2
2
 
3
- ## 0.11.0-canary-20250827063458-518013a7b02d85298577f680f2e9b2f32bf890d7
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-518013a7",
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-518013a7",
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"
@@ -11,3 +11,6 @@ dist/
11
11
  .vscode/*
12
12
  !.vscode/extensions.json
13
13
  .idea
14
+
15
+ # TypeScript
16
+ *.tsbuildinfo
@@ -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
- "exclude": ["dist/"],
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
- "exclude": ["dist/"],
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
+ }