Fix test-serializer building

This commit is contained in:
József Farkas
2016-08-15 19:36:02 +02:00
parent d5b5f3293a
commit ee5eb29f2a
2 changed files with 13 additions and 7 deletions

View File

@@ -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"
]
}
}

View File

@@ -6,6 +6,7 @@ module.exports = {
},
target: 'node',
output: {
path: __dirname,
filename: "test-serializer.js"
},
resolve: {