diff options
author | Vitaly Takmazov | 2022-11-06 14:26:04 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | e2735d40f83772835edc9accbc25f26dcd5a86b0 (patch) | |
tree | 2a196c23e8b23241a56ae823b14666c5fd55cfb2 /vnext/.swcrc | |
parent | 8c2b2cee1f8701479bafbd69069847e50e8f0d67 (diff) |
Upgrade build environment to use esbuild and swc
Diffstat (limited to 'vnext/.swcrc')
-rw-r--r-- | vnext/.swcrc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vnext/.swcrc b/vnext/.swcrc new file mode 100644 index 00000000..107f4aec --- /dev/null +++ b/vnext/.swcrc @@ -0,0 +1,18 @@ +{ + // .swcrc should be treated as JSONC + + "sourceMaps": true, + + "jsc": { + "parser": { + "syntax": "ecmascript", + "jsx": true + }, + + "transform": { + "react": { + "runtime": "automatic" + } + } + } + }
\ No newline at end of file |