videomail-client 9.4.2 → 9.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tsconfig.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "include": ["etc", "src", ".storybook", ".eslintrc.js", "prettier.config.cjs"],
3
+ "extends": [
4
+ "./node_modules/@tsconfig/strictest/tsconfig.json",
5
+ "./node_modules/@tsconfig/node22/tsconfig.json"
6
+ ],
7
+ "compilerOptions": {
8
+ "module": "esnext",
9
+ "moduleResolution": "bundler",
10
+
11
+ "lib": ["dom", "dom.iterable", "esnext"],
12
+
13
+ "allowSyntheticDefaultImports": true,
14
+ "resolveJsonModule": true,
15
+ "allowImportingTsExtensions": true,
16
+
17
+ // TODO To be removed once all is ported to TS
18
+ "allowJs": true,
19
+
20
+ // This option can help you avoid using certain syntax that cannot be correctly compiled by SWC and Babel, see:
21
+ // https://rsbuild.dev/guide/basic/typescript#isolatedmodules
22
+ "isolatedModules": true,
23
+
24
+ // Strips all comments from TypeScript files when converting into JavaScript,
25
+ // you rarely read compiled code so this saves space
26
+ "removeComments": true,
27
+
28
+ "noEmit": true,
29
+
30
+ // TODO Remove these exceptions and fix more errors one day
31
+ "noImplicitAny": false,
32
+ "noPropertyAccessFromIndexSignature": false
33
+ }
34
+ }