[TS] Create .d.mts files by default
[ldk-java] / ts / tsconfig.json
1 {
2   "compilerOptions": {
3     "target": "es2021",
4     "module": "es2020",
5     "sourceMap": true,
6     "esModuleInterop": false,
7     "stripInternal": true,
8
9     "allowSyntheticDefaultImports": false,
10     "forceConsistentCasingInFileNames": true,
11     "declaration": true,
12     "strict": true,
13     "noImplicitAny": true,
14     "strictNullChecks": false,
15     "strictFunctionTypes": true,
16     "strictBindCallApply": true,
17     "strictPropertyInitialization": false,
18     "noImplicitThis": true,
19     "useUnknownInCatchVariables": true,
20     "alwaysStrict": true,
21     "noUnusedLocals": false,
22     "noUnusedParameters": false,
23     "exactOptionalPropertyTypes": false,
24     "noImplicitReturns": true,
25     "noFallthroughCasesInSwitch": true,
26     "noUncheckedIndexedAccess": true,
27     "noImplicitOverride": true,
28     "noPropertyAccessFromIndexSignature": true,
29     "allowUnusedLabels": false,
30     "allowUnreachableCode": false,
31
32     "skipLibCheck": true
33   }
34 }