mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 04:07:14 +03:00
469b5b5790
* DefferedPromise refactor * Moved defferedPromise to utils folder * Base url moved to app file * Store modules states rewrittten according to vue doc recommendations * Deffered promise usage moved * removed unused packages in entries * Structure refactor, easier building, prod building configured, tsconfig reconfigure removed useless packages * Update front/index.html Co-Authored-By: avele <34437766+avele@users.noreply.github.com> * Update front/postcss.config.js Co-Authored-By: avele <34437766+avele@users.noreply.github.com> * Comment rewritten
22 lines
435 B
JavaScript
22 lines
435 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@babel/env', {
|
|
targets: {
|
|
browsers: ['last 3 versions', '> 2%', 'ie >= 10', 'Firefox >= 30', 'Chrome >= 30']
|
|
},
|
|
modules: false,
|
|
loose: true,
|
|
useBuiltIns: 'entry'
|
|
}]
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-syntax-dynamic-import'
|
|
],
|
|
env: {
|
|
test: {
|
|
plugins: ['transform-es2015-modules-commonjs']
|
|
}
|
|
}
|
|
}
|