amaro 1.1.4 → 1.1.6
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/README.md +3 -3
- package/dist/index.js +5 -5
- package/dist/package.json +1 -1
- package/dist/register-transform.mjs +1 -1
- package/lib/wasm.d.ts +3 -3
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -6,7 +6,7 @@ const hasSourceMaps =
|
|
|
6
6
|
env.NODE_OPTIONS?.includes("--enable-source-maps");
|
|
7
7
|
|
|
8
8
|
if (!hasSourceMaps) {
|
|
9
|
-
emitWarning("Source maps are disabled, stack traces will not accurate");
|
|
9
|
+
emitWarning("Source maps are disabled, stack traces will not be accurate");
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
register("./transform-loader.js", import.meta.url);
|
package/lib/wasm.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ interface TransformConfig {
|
|
|
30
30
|
* Don't create `export {}`.
|
|
31
31
|
* By default, strip creates `export {}` for modules to preserve module
|
|
32
32
|
* context.
|
|
33
|
-
*
|
|
33
|
+
*
|
|
34
34
|
* @see https://github.com/swc-project/swc/issues/1698
|
|
35
35
|
*/
|
|
36
36
|
noEmptyExport?: boolean;
|
|
@@ -39,7 +39,7 @@ interface TransformConfig {
|
|
|
39
39
|
* Disables an optimization that inlines TS enum member values
|
|
40
40
|
* within the same module that assumes the enum member values
|
|
41
41
|
* are never modified.
|
|
42
|
-
*
|
|
42
|
+
*
|
|
43
43
|
* Defaults to false.
|
|
44
44
|
*/
|
|
45
45
|
tsEnumIsMutable?: boolean;
|
|
@@ -53,7 +53,7 @@ interface TransformConfig {
|
|
|
53
53
|
interface JsxConfig {
|
|
54
54
|
/**
|
|
55
55
|
* How to transform JSX.
|
|
56
|
-
*
|
|
56
|
+
*
|
|
57
57
|
* @default "react-jsx"
|
|
58
58
|
*/
|
|
59
59
|
transform?: "react-jsx" | "react-jsxdev";
|