Update CI references to 0.0.122
[ldk-java] / node-net / tsconfig.json
1 {
2   "compilerOptions": {
3     "target": "es2021",
4     "module": "es2022",
5     "sourceMap": true,
6     "esModuleInterop": false,
7     "stripInternal": true,
8     "moduleResolution": "node",
9
10     "paths": {
11         "lightningdevkit": [ "../ts/index.mts" ]
12     },
13
14     "allowSyntheticDefaultImports": false,
15     "forceConsistentCasingInFileNames": true,
16     "declaration": true,
17     "strict": true,
18     "noImplicitAny": true,
19     "strictNullChecks": false,
20     "strictFunctionTypes": true,
21     "strictBindCallApply": true,
22     "strictPropertyInitialization": false,
23     "noImplicitThis": true,
24     "useUnknownInCatchVariables": true,
25     "alwaysStrict": true,
26     "noUnusedLocals": false,
27     "noUnusedParameters": false,
28     "exactOptionalPropertyTypes": false,
29     "noImplicitReturns": true,
30     "noFallthroughCasesInSwitch": true,
31     "noUncheckedIndexedAccess": true,
32     "noImplicitOverride": true,
33     "noPropertyAccessFromIndexSignature": true,
34     "allowUnusedLabels": false,
35     "allowUnreachableCode": false
36   }
37 }