mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
22 lines
491 B
JavaScript
22 lines
491 B
JavaScript
require('@babel/register')({
|
|
presets: [
|
|
[
|
|
"@babel/preset-env"
|
|
, {
|
|
targets: {
|
|
node: "current"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
, plugins: [
|
|
"@babel/plugin-transform-runtime"
|
|
, "@babel/plugin-syntax-dynamic-import"
|
|
, "@babel/plugin-syntax-import-meta"
|
|
, "@babel/plugin-proposal-class-properties"
|
|
, "@babel/plugin-proposal-json-strings"
|
|
]
|
|
});
|
|
|
|
require('../src/js/main');
|