X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Ftsconfig.json;h=a2867b849f45006c7eee061f719c8a75e7ec79f4;hb=HEAD;hp=4728be189f9e48c83d93dc17ebc19ab53ba41a49;hpb=0ad910f3687d1d30d31c47e9210952ef090558e3;p=ldk-java diff --git a/ts/tsconfig.json b/ts/tsconfig.json index 4728be18..57c75ee7 100644 --- a/ts/tsconfig.json +++ b/ts/tsconfig.json @@ -2,20 +2,25 @@ "compilerOptions": { "target": "es2021", "module": "es2020", - "forceConsistentCasingInFileNames": true, + "sourceMap": true, + "esModuleInterop": false, + "stripInternal": true, + "allowSyntheticDefaultImports": false, + "forceConsistentCasingInFileNames": true, + "declaration": true, "strict": true, "noImplicitAny": true, - "strictNullChecks": false, + "strictNullChecks": true, "strictFunctionTypes": true, "strictBindCallApply": true, - "strictPropertyInitialization": false, + "strictPropertyInitialization": true, "noImplicitThis": true, "useUnknownInCatchVariables": true, "alwaysStrict": true, "noUnusedLocals": false, "noUnusedParameters": false, - "exactOptionalPropertyTypes": false, + "exactOptionalPropertyTypes": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, @@ -24,6 +29,6 @@ "allowUnusedLabels": false, "allowUnreachableCode": false, - "skipLibCheck": true + "skipLibCheck": false } }