typescriptモジュールをjavascriptモジュールにビルドする方法
これは私の tsconfigFile です
{
"compilerOptions": {
"target": "ES5",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
"strict": true,
"moduleResolution": "Node",
"esModuleInterop": true,
"skipLibCheck": true
}
}
このコードを作成したい --------------
Typescript モジュール
import getData from './getData';
export default {
getData
};
ノードモジュール
const getData = require("./getData")';
module.exports = {
getData
};