File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 "description" : " run your react app logic on the server" ,
55 "type" : " module" ,
66 "exports" : {
7- "./server" : " ./src/server/index.ts" ,
8- "./client" : " ./src/client/index.ts" ,
9- "." : " ./src/shared/index.ts" ,
10- "./shared" : " ./src/shared/index.ts"
7+ "./server" : {
8+ "types" : " ./src/server/index.ts" ,
9+ "import" : " ./src/server/index.ts" ,
10+ "default" : " ./src/server/index.ts"
11+ },
12+ "./client" : {
13+ "types" : " ./src/client/index.ts" ,
14+ "import" : " ./src/client/index.ts" ,
15+ "default" : " ./src/client/index.ts"
16+ },
17+ "." : {
18+ "types" : " ./src/shared/index.ts" ,
19+ "import" : " ./src/shared/index.ts" ,
20+ "default" : " ./src/shared/index.ts"
21+ },
22+ "./shared" : {
23+ "types" : " ./src/shared/index.ts" ,
24+ "import" : " ./src/shared/index.ts" ,
25+ "default" : " ./src/shared/index.ts"
26+ }
1127 },
1228 "files" : [
1329 " src"
Original file line number Diff line number Diff line change 44 "description" : " render react tree to nothing!" ,
55 "type" : " module" ,
66 "exports" : {
7- "." : " ./src/index.ts"
7+ "." : {
8+ "types" : " ./src/index.ts" ,
9+ "import" : " ./src/index.ts" ,
10+ "default" : " ./src/index.ts"
11+ }
812 },
913 "files" : [
1014 " src"
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import Reconciler from "react-reconciler";
22import { DefaultEventPriority } from "react-reconciler/constants.js" ;
33import type { ReactNode } from "react" ;
44
5- type Container = Record < string , unknown > ;
65type Instance = Record < string , unknown > ;
76type HostContext = Record < string , unknown > ;
87
Original file line number Diff line number Diff line change 44 "description" : " Web terminal multiplexer for dev servers" ,
55 "type" : " module" ,
66 "exports" : {
7- "." : " ./src/index.ts" ,
8- "./views" : " ./src/views.ts"
7+ "." : {
8+ "types" : " ./src/index.ts" ,
9+ "import" : " ./src/index.ts" ,
10+ "default" : " ./src/index.ts"
11+ },
12+ "./views" : {
13+ "types" : " ./src/views.ts" ,
14+ "import" : " ./src/views.ts" ,
15+ "default" : " ./src/views.ts"
16+ }
917 },
1018 "files" : [
1119 " src"
Original file line number Diff line number Diff line change 44 "description" : " WebSocket client transport for echoform (works with Bun server)" ,
55 "type" : " module" ,
66 "exports" : {
7- "." : " ./src/index.ts"
7+ "." : {
8+ "types" : " ./src/index.ts" ,
9+ "import" : " ./src/index.ts" ,
10+ "default" : " ./src/index.ts"
11+ }
812 },
913 "files" : [
1014 " src"
Original file line number Diff line number Diff line change 44 "description" : " Bun WebSocket server transport for echoform" ,
55 "type" : " module" ,
66 "exports" : {
7- "." : " ./src/index.ts"
7+ "." : {
8+ "types" : " ./src/index.ts" ,
9+ "import" : " ./src/index.ts" ,
10+ "default" : " ./src/index.ts"
11+ }
812 },
913 "files" : [
1014 " src"
Original file line number Diff line number Diff line change 11{
2+ "extends" : " ../../../tsconfig.base.json" ,
23 "compilerOptions" : {
3- "target" : " ESNext" ,
4- "module" : " ESNext" ,
5- "moduleResolution" : " bundler" ,
6- "jsx" : " react-jsx" ,
7- "strict" : true ,
8- "noEmit" : true ,
9- "esModuleInterop" : true ,
10- "skipLibCheck" : true ,
11- "forceConsistentCasingInFileNames" : true
4+ "types" : [" bun" ]
125 },
136 "include" : [" src" ]
147}
Original file line number Diff line number Diff line change 44 "description" : " Socket.IO client transport for echoform" ,
55 "type" : " module" ,
66 "exports" : {
7- "." : " ./src/index.ts"
7+ "." : {
8+ "types" : " ./src/index.tsx" ,
9+ "import" : " ./src/index.tsx" ,
10+ "default" : " ./src/index.tsx"
11+ }
812 },
913 "files" : [
1014 " src"
Original file line number Diff line number Diff line change 11{
2- "compilerOptions" : {
3- "target" : " ESNext" ,
4- "module" : " ESNext" ,
5- "moduleResolution" : " bundler" ,
6- "jsx" : " react-jsx" ,
7- "strict" : true ,
8- "noEmit" : true ,
9- "esModuleInterop" : true ,
10- "skipLibCheck" : true ,
11- "forceConsistentCasingInFileNames" : true
12- },
2+ "extends" : " ../../../tsconfig.base.json" ,
133 "include" : [" src" ]
144}
Original file line number Diff line number Diff line change 44 "description" : " Socket.IO server transport for echoform" ,
55 "type" : " module" ,
66 "exports" : {
7- "." : " ./src/index.ts"
7+ "." : {
8+ "types" : " ./src/index.tsx" ,
9+ "import" : " ./src/index.tsx" ,
10+ "default" : " ./src/index.tsx"
11+ }
812 },
913 "files" : [
1014 " src"
You can’t perform that action at this time.
0 commit comments