@teambit/typescript 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 +20 -18
- package/tsconfig.default.json +25 -0
- package/tsconfig.json +34 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.557",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/typescript/typescript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.typescript",
|
|
8
8
|
"name": "typescript",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.557"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@teambit/harmony": "0.2.11",
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
"p-map-series": "2.1.0",
|
|
17
17
|
"@babel/runtime": "7.12.18",
|
|
18
18
|
"core-js": "^3.0.0",
|
|
19
|
-
"@teambit/compiler": "0.0.
|
|
20
|
-
"@teambit/typescript.modules.ts-config-mutator": "0.0.
|
|
21
|
-
"@teambit/bit-error": "0.0.
|
|
22
|
-
"@teambit/builder": "0.0.
|
|
23
|
-
"@teambit/isolator": "0.0.
|
|
24
|
-
"@teambit/logger": "0.0.
|
|
25
|
-
"@teambit/component": "0.0.
|
|
26
|
-
"@teambit/schema": "0.0.
|
|
27
|
-
"@teambit/cli": "0.0.
|
|
28
|
-
"@teambit/pkg": "0.0.
|
|
29
|
-
"@teambit/ts-server": "0.0.
|
|
30
|
-
"@teambit/workspace": "0.0.
|
|
19
|
+
"@teambit/compiler": "0.0.557",
|
|
20
|
+
"@teambit/typescript.modules.ts-config-mutator": "0.0.45",
|
|
21
|
+
"@teambit/bit-error": "0.0.374",
|
|
22
|
+
"@teambit/builder": "0.0.557",
|
|
23
|
+
"@teambit/isolator": "0.0.557",
|
|
24
|
+
"@teambit/logger": "0.0.473",
|
|
25
|
+
"@teambit/component": "0.0.557",
|
|
26
|
+
"@teambit/schema": "0.0.557",
|
|
27
|
+
"@teambit/cli": "0.0.388",
|
|
28
|
+
"@teambit/pkg": "0.0.557",
|
|
29
|
+
"@teambit/ts-server": "0.0.11",
|
|
30
|
+
"@teambit/workspace": "0.0.557"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"chai": "4.3.0",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"@types/jest": "^26.0.0",
|
|
40
40
|
"@types/react-dom": "^17.0.5",
|
|
41
41
|
"@types/node": "12.20.4",
|
|
42
|
-
"@teambit/typescript.aspect-docs.typescript": "0.0.
|
|
42
|
+
"@teambit/typescript.aspect-docs.typescript": "0.0.107"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@teambit/legacy": "1.0.
|
|
45
|
+
"@teambit/legacy": "1.0.174",
|
|
46
46
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
47
47
|
"react": "^16.8.0 || ^17.0.0"
|
|
48
48
|
},
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"react": "-"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@teambit/legacy": "1.0.
|
|
73
|
+
"@teambit/legacy": "1.0.174",
|
|
74
74
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
75
75
|
"react": "^16.8.0 || ^17.0.0"
|
|
76
76
|
}
|
|
@@ -80,7 +80,9 @@
|
|
|
80
80
|
"dist",
|
|
81
81
|
"!dist/tsconfig.tsbuildinfo",
|
|
82
82
|
"README.md",
|
|
83
|
-
"README.mdx"
|
|
83
|
+
"README.mdx",
|
|
84
|
+
"*.js",
|
|
85
|
+
"*.json"
|
|
84
86
|
],
|
|
85
87
|
"private": false,
|
|
86
88
|
"engines": {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es2015",
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"jsx": "react",
|
|
6
|
+
"composite": true,
|
|
7
|
+
"declaration": true,
|
|
8
|
+
"sourceMap": true,
|
|
9
|
+
"skipLibCheck": true,
|
|
10
|
+
"outDir": "dist",
|
|
11
|
+
"rootDir": ".",
|
|
12
|
+
"esModuleInterop": true,
|
|
13
|
+
"experimentalDecorators": true,
|
|
14
|
+
"emitDecoratorMetadata": true,
|
|
15
|
+
"strict": true,
|
|
16
|
+
"moduleResolution": "node",
|
|
17
|
+
"noImplicitAny": false,
|
|
18
|
+
"removeComments": true,
|
|
19
|
+
"preserveConstEnums": true,
|
|
20
|
+
"resolveJsonModule": true
|
|
21
|
+
},
|
|
22
|
+
"exclude": [
|
|
23
|
+
"dist"
|
|
24
|
+
]
|
|
25
|
+
}
|
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
|
+
}
|