diff --git a/tsconfig.json b/tsconfig.json index 52bfbd228..9d184b4d0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,22 @@ { "compilerOptions": { - "target": "es6", - "module": "commonjs", "esModuleInterop": true, - "skipLibCheck": true, - "outDir": "lib", "forceConsistentCasingInFileNames": true, + "module": "commonjs", + "outDir": "lib", + "resolveJsonModule": true, + "skipLibCheck": true, + "target": "es6", + + "allowUnreachableCode": false, + "allowUnusedLabels": false, + "exactOptionalPropertyTypes": true, "noFallthroughCasesInSwitch": true, + "noImplicitOverride": true, "noImplicitReturns": true, + "noPropertyAccessFromIndexSignature": true, "noUnusedLocals": true, "noUnusedParameters": true, - "resolveJsonModule": true, "strict": true } }