diff --git a/config-serializer/tsconfig.json b/config-serializer/tsconfig.json index c3c3898f..01226b65 100644 --- a/config-serializer/tsconfig.json +++ b/config-serializer/tsconfig.json @@ -1,10 +1,15 @@ { - "compilerOptions": { - "target": "es5", - "module": "commonjs", - "experimentalDecorators": true - }, - "files": [ - "../typings/index.d.ts" + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "moduleResolution": "node", + "experimentalDecorators": true, + "typeRoots": [ + "../node_modules/@types" + ], + "types": [ + "node", + "es6-shim" ] + } } \ No newline at end of file diff --git a/config-serializer/webpack.config.js b/config-serializer/webpack.config.js index 8ad39493..73de174f 100644 --- a/config-serializer/webpack.config.js +++ b/config-serializer/webpack.config.js @@ -6,6 +6,7 @@ module.exports = { }, target: 'node', output: { + path: __dirname, filename: "test-serializer.js" }, resolve: {