Skip to content

Commit 1f5ecca

Browse files
committed
Initial commit
0 parents  commit 1f5ecca

24 files changed

+32479
-0
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/node_modules
2+
**/*.log

Diff for: lerna.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"packages": [
3+
"packages/*"
4+
],
5+
"version": "0.0.0"
6+
}

Diff for: package-lock.json

+13,272
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "root",
3+
"private": true,
4+
"devDependencies": {
5+
"lerna": "^3.5.1"
6+
}
7+
}

Diff for: packages/babel-preset-react/index.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = () => ({
2+
presets: [
3+
[
4+
require('@babel/preset-env').default,
5+
{
6+
loose: true,
7+
modules: false,
8+
useBuiltIns: 'usage',
9+
exclude: ['transform-typeof-symbol'],
10+
},
11+
],
12+
[
13+
require('@babel/preset-react').default,
14+
{
15+
useBuiltIns: true,
16+
},
17+
],
18+
],
19+
plugins: [
20+
[
21+
require('@babel/plugin-proposal-class-properties').default,
22+
{ loose: true },
23+
],
24+
],
25+
});

0 commit comments

Comments
 (0)