如何将 typescript 模块构建为 javascript 模块
这是我的 tsconfigFile
{
"compilerOptions": {
"target": "ES5",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
"strict": true,
"moduleResolution": "Node",
"esModuleInterop": true,
"skipLibCheck": true
}
}
我想建立这个代码 --------------
打字稿模块
import getData from './getData';
export default {
getData
};
节点模块
const getData = require("./getData")';
module.exports = {
getData
};