You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is a problem, scoped require doesn't ignores. e.g.
import fs from 'fs';
import {resolve} from 'path';
import {debounce} from 'lodash';
const a = require('../abc');
require('/def');
require('./../def');
export * from 'exp1';
export {ee} from 'exp1';
// this require is a param, expect not to be transformed
export const main = function(require){
let test = require("hello")
return test
}
how to fix?
The text was updated successfully, but these errors were encountered:
there is a problem, scoped require doesn't ignores. e.g.
how to fix?
The text was updated successfully, but these errors were encountered: