update tsconfig.json to escape node.d.ts hell

This commit is contained in:
Johannes Rieken 2018-09-26 12:53:06 +02:00
parent 72ed1a8b61
commit 200d30e467

View file

@ -6,9 +6,12 @@
],
"module": "commonjs",
"noUnusedLocals": true,
"outDir": "./out"
"outDir": "./out",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*"
]
}
}