X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Ftsconfig.json;h=57c75ee762c8a1886cca487716eeabe2d45dcb06;hb=HEAD;hp=922bd1732f939de236e9b5b9f8004a5f26a494ac;hpb=a937cedf387378f24883ab14c5b52a4d13be58bc;p=ldk-java diff --git a/ts/tsconfig.json b/ts/tsconfig.json index 922bd173..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": false, - "strictNullChecks": false, + "noImplicitAny": true, + "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 } }