CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
ProdigyPNP

CoCalc is a real-time collaborative commercial alternative to JupyterHub and Overleaf that provides Jupyter Notebooks, LaTeX documents, and SageMath.

GitHub Repository: ProdigyPNP/ProdigyMathGameHacking
Path: blob/master/cheatGUI/babel.config.js
Views: 713
1
module.exports = api => {
2
api.cache(true);
3
const presets = [
4
[
5
"@babel/preset-env",
6
{
7
targets: {
8
esmodules: true,
9
},
10
},
11
],
12
];
13
const plugins = ["@babel/plugin-proposal-optional-chaining"];
14
return {
15
presets,
16
plugins,
17
};
18
};
19
20