[Java] Print error stack trace when tests fail
[ldk-java] / ts / tsconfig.json
index 4728be189f9e48c83d93dc17ebc19ab53ba41a49..57c75ee762c8a1886cca487716eeabe2d45dcb06 100644 (file)
@@ -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
   }
 }