2a13da1a6c
* chore: gitignore for lib directory * build: packageing for webpack lib build * build: webpack config * feat: expose App component with beeApiUrl parameter * build: tsconfig for library build * build: main property of package json for tsc build * refactor: rename beeUrl option to beeApiUrl * refactor: manange config class instead of process.env calls * build: babelrc config * build: babel plugins and presets for webpack build * chore: serve.js chmod * build(refactor): webpack build * refactor: number notation * chore: webpack and package config change * build: add babel preset-env * chore: prepare script also builds component lib * feat: typegen * revert: set back prepare command * build: assets loader config * feat: beeDebugApiUrl * refactor: move test files to the test folder because of typegen * feat: locked api settings * chore: depcheck ignores * chore: types check script * ci: check types * ci: publish with library * chore: add webpack as devDep * chore: locked semver * chore: remove debug logging * style: webpack config * chore: react and react-dom as dependency * chore: package-lock * fix: clean package-lock init * refactor: fix versions in package.json
50 lines
967 B
JavaScript
50 lines
967 B
JavaScript
'use strict'
|
|
|
|
module.exports = function (api) {
|
|
const targets = '>1% and not ie 11 and not dead'
|
|
api.cache(true)
|
|
api.cacheDirectory = true
|
|
|
|
return {
|
|
presets: [
|
|
'@babel/preset-typescript',
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets,
|
|
modules: false,
|
|
}
|
|
],
|
|
['@babel/preset-react', {runtime: 'automatic' }]
|
|
],
|
|
plugins: [
|
|
[
|
|
"babel-plugin-tsconfig-paths",
|
|
{
|
|
"relative": true,
|
|
"extensions": [
|
|
".js",
|
|
".jsx",
|
|
".ts",
|
|
".tsx",
|
|
".es",
|
|
".es6",
|
|
".mjs"
|
|
],
|
|
"rootDir": ".",
|
|
"tsconfig": "tsconfig.lib.json",
|
|
}
|
|
],
|
|
"syntax-dynamic-import",
|
|
'@babel/plugin-proposal-class-properties',
|
|
[
|
|
'@babel/plugin-transform-runtime',
|
|
{
|
|
helpers: false,
|
|
regenerator: true
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|