mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
7 lines
241 B
JavaScript
7 lines
241 B
JavaScript
// Transpile all code following this line with babel and use '@babel/preset-env' (aka ES6) preset.
|
|
require("@babel/register")({
|
|
presets: ["@babel/preset-env"]
|
|
});
|
|
|
|
// Import the rest of our application.
|
|
module.exports = require('./app.js') |