From c6cf55c569b75bb152b3c0d243697b1f691fc1be Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 6 Nov 2019 00:45:02 +0200 Subject: [PATCH] tsconfig: make more like the iOS one. --- tsconfig.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c1799d1..e4bdb45 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,19 +10,21 @@ "sourceMap": true, "allowJs": true, "jsx": "preserve", - "moduleResolution": "node", "rootDir": "src", "forceConsistentCasingInFileNames": true, - "noImplicitReturns": true, - "noImplicitThis": true, - "noImplicitAny": true, - "strictNullChecks": true, - "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": true, + "moduleResolution": "node", "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": false, + "noImplicitReturns": true, + "noImplicitAny": true, + "noImplicitThis": true, + "noUnusedParameters": false, + "strictNullChecks": true, + "strictBindCallApply": true, + "suppressImplicitAnyIndexErrors": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true