@teambit/notifications 0.0.556 → 0.0.560
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/package.json +19 -10
- package/tsconfig.json +34 -0
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/notifications",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.560",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/ui-foundation/notifications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.ui-foundation",
|
|
8
8
|
"name": "notifications",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.560"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"uuid": "3.4.0",
|
|
13
13
|
"@teambit/harmony": "0.2.11",
|
|
14
14
|
"@babel/runtime": "7.12.18",
|
|
15
15
|
"core-js": "^3.0.0",
|
|
16
|
-
"@teambit/ui-foundation.ui.notifications.store": "0.0.
|
|
17
|
-
"@teambit/ui-foundation.ui.notifications.notification-center": "0.0.
|
|
18
|
-
"@teambit/ui-foundation.ui.notifications.notification-context": "0.0.
|
|
19
|
-
"@teambit/ui": "0.0.
|
|
16
|
+
"@teambit/ui-foundation.ui.notifications.store": "0.0.466",
|
|
17
|
+
"@teambit/ui-foundation.ui.notifications.notification-center": "0.0.470",
|
|
18
|
+
"@teambit/ui-foundation.ui.notifications.notification-context": "0.0.467",
|
|
19
|
+
"@teambit/ui": "0.0.560"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/react": "^17.0.8",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@types/node": "12.20.4"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@teambit/legacy": "1.0.
|
|
31
|
+
"@teambit/legacy": "1.0.175",
|
|
32
32
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
33
33
|
"react": "^16.8.0 || ^17.0.0"
|
|
34
34
|
},
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"react": "-"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@teambit/legacy": "1.0.
|
|
59
|
+
"@teambit/legacy": "1.0.175",
|
|
60
60
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
61
61
|
"react": "^16.8.0 || ^17.0.0"
|
|
62
62
|
}
|
|
@@ -65,8 +65,17 @@
|
|
|
65
65
|
"files": [
|
|
66
66
|
"dist",
|
|
67
67
|
"!dist/tsconfig.tsbuildinfo",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
68
|
+
"**/*.md",
|
|
69
|
+
"**/*.mdx",
|
|
70
|
+
"**/*.js",
|
|
71
|
+
"**/*.json",
|
|
72
|
+
"**/*.sass",
|
|
73
|
+
"**/*.scss",
|
|
74
|
+
"**/*.less",
|
|
75
|
+
"**/*.css",
|
|
76
|
+
"**/*.css",
|
|
77
|
+
"**/*.jpeg",
|
|
78
|
+
"**/*.gif"
|
|
70
79
|
],
|
|
71
80
|
"private": false,
|
|
72
81
|
"engines": {
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": [
|
|
4
|
+
"es2019",
|
|
5
|
+
"DOM",
|
|
6
|
+
"ES6",
|
|
7
|
+
"DOM.Iterable",
|
|
8
|
+
"ScriptHost"
|
|
9
|
+
],
|
|
10
|
+
"target": "es2015",
|
|
11
|
+
"module": "commonjs",
|
|
12
|
+
"jsx": "react",
|
|
13
|
+
"declaration": true,
|
|
14
|
+
"sourceMap": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"moduleResolution": "node",
|
|
17
|
+
"esModuleInterop": true,
|
|
18
|
+
"composite": true,
|
|
19
|
+
"emitDeclarationOnly": true,
|
|
20
|
+
"outDir": "dist",
|
|
21
|
+
"experimentalDecorators": true,
|
|
22
|
+
"emitDecoratorMetadata": true,
|
|
23
|
+
"allowSyntheticDefaultImports": true,
|
|
24
|
+
"strictPropertyInitialization": false,
|
|
25
|
+
"strict": true,
|
|
26
|
+
"noImplicitAny": false,
|
|
27
|
+
"rootDir": ".",
|
|
28
|
+
"preserveConstEnums": true,
|
|
29
|
+
"resolveJsonModule": true
|
|
30
|
+
},
|
|
31
|
+
"exclude": [
|
|
32
|
+
"dist"
|
|
33
|
+
]
|
|
34
|
+
}
|