You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
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 future, just like ts-loader appendTsSuffixTo, so that swc-loader can better support the compilation of .vue files
This is what I do now and it works fine so far. But I'm not sure if there are other problems with this。
// webpack.config.ts// ...... other rules{test: /\.ts$/i,exclude: ["/node_modules/"],use: ['swc-loader',resolve(__dirname,'custom-loader')],},// ...... other rules
This is what I do now and it works fine so far. But I'm not sure if there are other problems with this. If anyone can tell me how to add an option to swc-loader to do something similar, maybe I can submit a pull request
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 future, just like ts-loader appendTsSuffixTo, so that swc-loader can better support the compilation of .vue files
This is what I do now and it works fine so far. But I'm not sure if there are other problems with this。
This is what I do now and it works fine so far. But I'm not sure if there are other problems with this. If anyone can tell me how to add an option to swc-loader to do something similar, maybe I can submit a pull request
The text was updated successfully, but these errors were encountered: