Updates
This commit is contained in:
@@ -6,6 +6,5 @@
|
|||||||
.yarnrc.yml
|
.yarnrc.yml
|
||||||
babel.config.*
|
babel.config.*
|
||||||
jest.config.*
|
jest.config.*
|
||||||
src
|
|
||||||
tsconfig*.json
|
tsconfig*.json
|
||||||
tslint.json
|
tslint.json
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export const responseJson = (response: Response) => response.json();
|
export const responseJson = (response: Response | undefined) => (response && response.json()) || {};
|
||||||
|
|||||||
@@ -13,9 +13,9 @@
|
|||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"noImplicitThis": true,
|
"noImplicitThis": true,
|
||||||
"outDir": "lib/",
|
"outDir": "lib/",
|
||||||
"removeComments": true,
|
"removeComments": false,
|
||||||
"rootDirs": ["./", "src/"],
|
"rootDirs": ["./", "src/"],
|
||||||
"sourceMap": false,
|
"sourceMap": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"target": "es2017"
|
"target": "es2017"
|
||||||
|
|||||||
Reference in New Issue
Block a user