-
Notifications
You must be signed in to change notification settings - Fork 994
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(testing): build 'testing' package with esbuild (#11342)
Switches the testing package over to use esbuild over babel for building the package. This PR doesn't introduce the conditional exports yet.
- Loading branch information
1 parent
dc8e847
commit b4541a2
Showing
6 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { build } from '@redwoodjs/framework-tools' | ||
|
||
await build() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"extends": "../../tsconfig.compilerOption.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "dist", | ||
"module": "Node16", | ||
"moduleResolution": "Node16", | ||
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo" | ||
}, | ||
"include": ["src"], | ||
"references": [ | ||
{ "path": "../router/tsconfig.build.json" }, | ||
{ "path": "../babel-config" }, | ||
{ "path": "../context/tsconfig.build.json" }, | ||
{ "path": "../project-config" }, | ||
{ "path": "../web/tsconfig.build.json" }, | ||
{ "path": "../auth/tsconfig.build.json" }, | ||
{ "path": "../graphql-server" } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters