swc-loader
swc-loader copied to clipboard
Moved to https://github.com/swc-project/pkgs
**Installed Versions** ```json { "@swc/core": "^1.2.133", "@swc/jest": "^0.2.17", "swc-loader": "^0.1.15" } ``` The output of `swc-loader` is different between these two configurations: 1. **webpack.config.ts** (partial) ```ts { module: { rules:...
I'm trying to port from babel-loader and ts-loader to swc-loader, but everytime `require.context` is called, it returns undefined. When printing the `require` variable, it returns the following module: ```javascript function...
Compiling ts with swc is blazingly fast, and its advantage over esbuild is that it supports decorate metadata, which is great. I hope that swc-loader can support appendTsSuffixTo in the...
Hi, we are trying to convert our project from using ts-loader to swc-loader. After installing the node modules and setting up `loader: 'swc-loader'` in our webpack files, I'm seeing the...
I am using `yarn pnp`, so I cannot use the plugin provided by SWC. So, I need to use `babel-plugin-styled-components` using `babel-loader`. Can I use it with `swc-loader`? I think...
When I normally use SWC I call my config .swcrc.json to keep it consistent with tons of other similar configs and so that my IDE can automatically style the JSON,...
Bumps [terser](https://github.com/terser/terser) from 5.12.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
#36 maybe this will be more flexible
When using swc I set module type to `nodenext`, however when I use the exact same setup with swc-loader, it seems that suddenly I can't select that option any more....
I have an ejected CRA with a custom webpack loader. I use `swc-loader` instead of `babel-loader` for faster compile time. Actually, I add `@walletconnect/web3-provider` into my app. I got an...