mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 21:32:05 +00:00
12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
module.exports = {
|
|
reactStrictMode: true,
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
webpack: (config) => {
|
|
// support shiki top level await
|
|
config.experiments = { ...config.experiments, ...{ topLevelAwait: true }};
|
|
return config;
|
|
},
|
|
};
|