sophisticated rollup setup and eslint base setup

This commit is contained in:
Rene
2020-07-25 01:10:04 +02:00
parent 118aaf0d32
commit eb10b3d723
116 changed files with 15667 additions and 13077 deletions
@@ -0,0 +1 @@
export default 'abc';
@@ -0,0 +1,4 @@
const a = 1 + 1;
export default {
a,
};
@@ -0,0 +1,8 @@
import abc from 'dir/abc';
import not from 'dir/not.png';
import file from 'file';
import j from 'jquery';
import { a, b, c } from 'test';
export default j('div');
export { a, b, c, file, abc, not };
@@ -0,0 +1,3 @@
export const a = 'a';
export const b = 'b';
export const c = 'c';