@teambit/isolator 0.0.556 → 0.0.557
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 +15 -13
- package/tsconfig.json +34 -0
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/isolator",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.557",
|
4
4
|
"homepage": "https://bit.dev/teambit/component/isolator",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "isolator",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.557"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@teambit/harmony": "0.2.11",
|
@@ -23,14 +23,14 @@
|
|
23
23
|
"execa": "2.1.0",
|
24
24
|
"@babel/runtime": "7.12.18",
|
25
25
|
"core-js": "^3.0.0",
|
26
|
-
"@teambit/component": "0.0.
|
27
|
-
"@teambit/legacy-bit-id": "0.0.
|
28
|
-
"@teambit/cli": "0.0.
|
29
|
-
"@teambit/component-package-version": "0.0.
|
30
|
-
"@teambit/dependency-resolver": "0.0.
|
31
|
-
"@teambit/global-config": "0.0.
|
32
|
-
"@teambit/graph": "0.0.
|
33
|
-
"@teambit/logger": "0.0.
|
26
|
+
"@teambit/component": "0.0.557",
|
27
|
+
"@teambit/legacy-bit-id": "0.0.377",
|
28
|
+
"@teambit/cli": "0.0.388",
|
29
|
+
"@teambit/component-package-version": "0.0.374",
|
30
|
+
"@teambit/dependency-resolver": "0.0.557",
|
31
|
+
"@teambit/global-config": "0.0.389",
|
32
|
+
"@teambit/graph": "0.0.557",
|
33
|
+
"@teambit/logger": "0.0.473"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
36
|
"@types/fs-extra": "9.0.7",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"@types/node": "12.20.4"
|
46
46
|
},
|
47
47
|
"peerDependencies": {
|
48
|
-
"@teambit/legacy": "1.0.
|
48
|
+
"@teambit/legacy": "1.0.174",
|
49
49
|
"react-dom": "^16.8.0 || ^17.0.0",
|
50
50
|
"react": "^16.8.0 || ^17.0.0"
|
51
51
|
},
|
@@ -73,7 +73,7 @@
|
|
73
73
|
"react": "-"
|
74
74
|
},
|
75
75
|
"peerDependencies": {
|
76
|
-
"@teambit/legacy": "1.0.
|
76
|
+
"@teambit/legacy": "1.0.174",
|
77
77
|
"react-dom": "^16.8.0 || ^17.0.0",
|
78
78
|
"react": "^16.8.0 || ^17.0.0"
|
79
79
|
}
|
@@ -83,7 +83,9 @@
|
|
83
83
|
"dist",
|
84
84
|
"!dist/tsconfig.tsbuildinfo",
|
85
85
|
"README.md",
|
86
|
-
"README.mdx"
|
86
|
+
"README.mdx",
|
87
|
+
"*.js",
|
88
|
+
"*.json"
|
87
89
|
],
|
88
90
|
"private": false,
|
89
91
|
"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
|
+
}
|