File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 4
4
},
5
5
"rules": {
6
6
"import/extensions": "off",
7
+ "import/no-unresolved": "off",
7
8
"import/prefer-default-export": "off",
8
9
"no-console": "off"
9
10
}
Original file line number Diff line number Diff line change @@ -36,9 +36,11 @@ export default {
36
36
dir: ' output' ,
37
37
format: ' cjs'
38
38
},
39
- plugins: [strip ({
40
- labels: [' unittest' ]
41
- })]
39
+ plugins: [
40
+ strip ({
41
+ labels: [' unittest' ]
42
+ })
43
+ ]
42
44
};
43
45
```
44
46
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { rollup } from 'rollup';
2
2
import test from 'ava' ;
3
3
4
4
// eslint-disable-next-line no-unused-vars, import/no-unresolved, import/extensions
5
- import wasm , { wabt , emscripten } from '../dist/index' ;
5
+ import wasm from '../dist/index' ;
6
6
7
7
const AsyncFunction = Object . getPrototypeOf ( async ( ) => { } ) . constructor ;
8
8
You can’t perform that action at this time.
0 commit comments