Skip to content

Commit

Permalink
Update cli tsconfig to reference used packages (#9822)
Browse files Browse the repository at this point in the history
Took the list of used packages from `package.json`


![image](https://github.com/redwoodjs/redwood/assets/30793/c2343bfe-dc00-4f53-a0d2-c7d88ec16f18)

(marking this as "next-release", because tsconfig is introduced in a PR
that's not going out until the next release)
  • Loading branch information
Tobbe committed Jan 12, 2024
1 parent cb44899 commit 4b85def
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,15 @@
"noEmit": true
},
"include": ["src", "./testUtils.d.ts"],
"exclude": ["**/__testfixtures__"]
"exclude": ["**/__testfixtures__"],
"references": [
{ "path": "../api-server" },
{ "path": "../cli-helpers" },
{ "path": "../fastify" },
{ "path": "../internal" },
{ "path": "../prerender" },
{ "path": "../project-config" },
{ "path": "../structure" },
{ "path": "../telemetry" }
]
}

0 comments on commit 4b85def

Please sign in to comment.