@teambit/ts-server 0.0.31 → 0.0.34
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.
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": [
|
|
4
|
+
"es2019",
|
|
5
|
+
"DOM",
|
|
6
|
+
"ES6",
|
|
7
|
+
"DOM.Iterable"
|
|
8
|
+
],
|
|
9
|
+
"target": "es2015",
|
|
10
|
+
"module": "CommonJS",
|
|
11
|
+
"jsx": "react",
|
|
12
|
+
"allowJs": true,
|
|
13
|
+
"composite": true,
|
|
14
|
+
"declaration": true,
|
|
15
|
+
"sourceMap": true,
|
|
16
|
+
"skipLibCheck": true,
|
|
17
|
+
"experimentalDecorators": true,
|
|
18
|
+
"outDir": "dist",
|
|
19
|
+
"moduleResolution": "node",
|
|
20
|
+
"esModuleInterop": true,
|
|
21
|
+
"rootDir": ".",
|
|
22
|
+
"resolveJsonModule": true
|
|
23
|
+
},
|
|
24
|
+
"exclude": [
|
|
25
|
+
"dist",
|
|
26
|
+
"package.json"
|
|
27
|
+
],
|
|
28
|
+
"include": [
|
|
29
|
+
"**/*",
|
|
30
|
+
"**/*.json"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/ts-server",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/typescript/ts-server",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.typescript",
|
|
8
8
|
"name": "ts-server",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.34"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"typescript": "4.4.2",
|
|
@@ -18,34 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/fs-extra": "9.0.7",
|
|
21
|
-
"@types/mocha": "5.2.7",
|
|
22
21
|
"@babel/runtime": "7.12.18",
|
|
23
22
|
"@types/node": "12.20.4",
|
|
24
23
|
"@types/jest": "26.0.20"
|
|
25
24
|
},
|
|
26
|
-
"peerDependencies": {
|
|
27
|
-
"@teambit/legacy": "1.0.193"
|
|
28
|
-
},
|
|
25
|
+
"peerDependencies": {},
|
|
29
26
|
"license": "Apache-2.0",
|
|
30
|
-
"bit": {
|
|
31
|
-
"bindingPrefix": "@teambit",
|
|
32
|
-
"env": {},
|
|
33
|
-
"overrides": {
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@teambit/legacy": "-"
|
|
36
|
-
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@teambit/legacy": "-",
|
|
39
|
-
"@types/mocha": "5.2.7",
|
|
40
|
-
"@babel/runtime": "7.12.18",
|
|
41
|
-
"@types/node": "12.20.4",
|
|
42
|
-
"@types/jest": "26.0.20"
|
|
43
|
-
},
|
|
44
|
-
"peerDependencies": {
|
|
45
|
-
"@teambit/legacy": "1.0.193"
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
27
|
"private": false,
|
|
50
28
|
"engines": {
|
|
51
29
|
"node": ">=12.22.0"
|
|
@@ -63,8 +41,6 @@
|
|
|
63
41
|
"react",
|
|
64
42
|
"react-components",
|
|
65
43
|
"angular",
|
|
66
|
-
"angular-components"
|
|
67
|
-
"vue",
|
|
68
|
-
"vue-components"
|
|
44
|
+
"angular-components"
|
|
69
45
|
]
|
|
70
46
|
}
|
package/tsconfig.json
CHANGED
|
@@ -7,13 +7,14 @@
|
|
|
7
7
|
"DOM.Iterable"
|
|
8
8
|
],
|
|
9
9
|
"target": "es2015",
|
|
10
|
-
"module": "
|
|
10
|
+
"module": "CommonJS",
|
|
11
11
|
"jsx": "react",
|
|
12
12
|
"allowJs": true,
|
|
13
13
|
"composite": true,
|
|
14
14
|
"declaration": true,
|
|
15
15
|
"sourceMap": true,
|
|
16
16
|
"skipLibCheck": true,
|
|
17
|
+
"experimentalDecorators": true,
|
|
17
18
|
"outDir": "dist",
|
|
18
19
|
"moduleResolution": "node",
|
|
19
20
|
"esModuleInterop": true,
|
|
@@ -21,6 +22,11 @@
|
|
|
21
22
|
"resolveJsonModule": true
|
|
22
23
|
},
|
|
23
24
|
"exclude": [
|
|
24
|
-
"dist"
|
|
25
|
+
"dist",
|
|
26
|
+
"package.json"
|
|
27
|
+
],
|
|
28
|
+
"include": [
|
|
29
|
+
"**/*",
|
|
30
|
+
"**/*.json"
|
|
25
31
|
]
|
|
26
32
|
}
|
|
Binary file
|