Use dts-gen

This commit is contained in:
Ivan Kerin
2019-04-02 15:33:50 +03:00
parent 90da41040a
commit bc35e8b796

View File

@@ -1,16 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": ["../"],
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": ["index.d.ts", "stream-mock-tests.ts"]
"files": [
"index.d.ts",
"stream-mock-tests.ts"
]
}