mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-12 16:42:30 +03:00
sophisticated rollup setup and eslint base setup
This commit is contained in:
@@ -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';
|
||||
Reference in New Issue
Block a user