File tree Expand file tree Collapse file tree 4 files changed +44
-0
lines changed
Expand file tree Collapse file tree 4 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " @codebuff/display" ,
3+ "version" : " 0.0.0" ,
4+ "private" : true ,
5+ "license" : " UNLICENSED" ,
6+ "type" : " module" ,
7+ "exports" : {
8+ "." : {
9+ "bun" : " ./src/index.ts" ,
10+ "import" : " ./src/index.ts" ,
11+ "types" : " ./src/index.ts" ,
12+ "default" : " ./src/index.ts"
13+ },
14+ "./*" : {
15+ "bun" : " ./src/*.ts" ,
16+ "import" : " ./src/*.ts" ,
17+ "types" : " ./src/*.ts" ,
18+ "default" : " ./src/*.ts"
19+ }
20+ },
21+ "scripts" : {
22+ "typecheck" : " tsc --noEmit -p ." ,
23+ "test" : " bun test"
24+ },
25+ "sideEffects" : false ,
26+ "engines" : {
27+ "bun" : " >=1.2.11"
28+ },
29+ "devDependencies" : {
30+ "@types/node" : " 22" ,
31+ "@types/bun" : " ^1.2.11"
32+ }
33+ }
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ../tsconfig.base.json" ,
3+ "compilerOptions" : {
4+ "types" : [" bun" , " node" ]
5+ },
6+ "include" : [" src/**/*.ts" ],
7+ "exclude" : [" node_modules" ]
8+ }
Original file line number Diff line number Diff line change 55 "license" : " Apache-2.0" ,
66 "type" : " module" ,
77 "workspaces" : [
8+ " display" ,
89 " common" ,
910 " backend" ,
1011 " npm-app" ,
Original file line number Diff line number Diff line change 44 "noEmit" : true , // don't place JS everywhere while hacking
55 "baseUrl" : " ." , // Bun & editors see the aliases
66 "paths" : {
7+ "@codebuff/display/*" : [" ./display/*" ],
78 "@codebuff/common/*" : [" ./common/src/*" ],
89 "@codebuff/backend/*" : [" ./backend/src/*" ],
910 "@codebuff/web/*" : [" ./web/src/*" ],
1718 },
1819 "files" : [],
1920 "references" : [
21+ { "path" : " ./display" },
2022 { "path" : " ./common" },
2123 { "path" : " ./backend" },
2224 { "path" : " ./npm-app" },
You can’t perform that action at this time.
0 commit comments