This commit is contained in:
Ivan Kerin
2019-04-02 15:47:08 +03:00
parent bc35e8b796
commit 36cb99bdfd

View File

@@ -1,22 +1,16 @@
{
"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"]
}