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/.storybook/main.ts +25 -0
- package/.storybook/manager.ts +5 -0
- package/.storybook/preview.ts +16 -0
- package/.storybook/theme.ts +8 -0
- package/.vscode/settings.json +1 -1
- package/README.md +1 -6
- package/chromatic.config.json +5 -0
- package/etc/rsbuild/config.ts +31 -0
- package/etc/rsbuild/paths.ts +11 -0
- package/package.json +1 -1
- package/prototype/js/videomail-client.js +107 -87
- package/prototype/js/videomail-client.min.js +4 -4
- package/prototype/js/videomail-client.min.js.map +1 -1
- package/tsconfig.json +34 -0
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
|
+
}
|