feat: v1
This commit is contained in:
parent
7ba64d9945
commit
1c620b036f
19 changed files with 2745 additions and 91 deletions
14
start.js
Executable file
14
start.js
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
// Transpile all code following this line with babel and use '@babel/preset-env' (aka ES6) preset.
|
||||
require("@babel/register")({
|
||||
presets: [
|
||||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
targets: { browsers: ["last 2 chrome versions"] },
|
||||
},
|
||||
],
|
||||
],
|
||||
});
|
||||
|
||||
// Import the rest of our application.
|
||||
module.exports = require("./src/app.ts");
|
||||
Loading…
Add table
Add a link
Reference in a new issue