For default exports you should use: import * as fs from 'fs'; Or in case the module has named exports: import {fs} from 'fs'; Example: //module1.js export ...
確定! 回上一頁