mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-23 11:09:27 +01:00
* Add preact package * Fix types * update types * fix types * remove dependecies * bump version * improve test setup for react as well * Add workflow for preact * Fix types * bump version * Add white space * remove forward ref * bump package * Fix types * Fix types * bump version * Remove proptypings * Test new version * Add some extra documentation
20 lines
272 B
JavaScript
20 lines
272 B
JavaScript
const mainConfig = require('../../babel.config');
|
|
|
|
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
loose: true,
|
|
modules: false,
|
|
},
|
|
],
|
|
],
|
|
env: {
|
|
...mainConfig.env,
|
|
test: {
|
|
presets: ['react-app'],
|
|
},
|
|
},
|
|
};
|