We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5266ba commit ef7d155Copy full SHA for ef7d155
1 file changed
e2e/generateWebpackConfig.ts
@@ -56,6 +56,7 @@ export async function generateWebpackConfig() {
56
rules: [
57
{
58
test: /\.[jt]sx?$/,
59
+ include: /packages\/vkui/,
60
exclude: /node_modules/,
61
use: {
62
loader: 'swc-loader',
@@ -68,6 +69,14 @@ export async function generateWebpackConfig() {
68
69
},
70
71
72
+ {
73
+ test: /\.[jt]sx?$/,
74
+ exclude: /(packages\/vkui|node_modules)/,
75
+ use: {
76
+ loader: 'swc-loader',
77
+ options: {},
78
+ },
79
80
81
test: /\.css$/i,
82
exclude: /\.module\.css$/,
0 commit comments