1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-25 03:32:54 +01:00
client/craco.config.js

19 lines
291 B
JavaScript
Raw Normal View History

2023-03-20 22:21:32 +01:00
const CracoEsbuildPlugin = require("craco-esbuild");
module.exports = {
2023-04-14 03:51:36 +02:00
plugins: [
{
plugin: CracoEsbuildPlugin,
options: {
esbuildMinimizerOptions: {
target: "ES2020",
},
esbuildLoaderOptions: {
loader: "tsx",
target: "ES2020",
},
},
},
],
2023-03-20 22:21:32 +01:00
};