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

pull/59464/head
Johannes Rieken 2018-09-26 12:53:06 +02:00
parent 72ed1a8b61
commit 200d30e467
1 changed files with 5 additions and 2 deletions

View File

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