@teambit/linter 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 +21 -12
- package/tsconfig.json +34 -0
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/linter",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.560",
|
4
4
|
"homepage": "https://bit.dev/teambit/defender/linter",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.defender",
|
8
8
|
"name": "linter",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.560"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -17,12 +17,12 @@
|
|
17
17
|
"ink": "3.0.8",
|
18
18
|
"@babel/runtime": "7.12.18",
|
19
19
|
"core-js": "^3.0.0",
|
20
|
-
"@teambit/cli": "0.0.
|
21
|
-
"@teambit/component": "0.0.
|
22
|
-
"@teambit/envs": "0.0.
|
23
|
-
"@teambit/workspace": "0.0.
|
24
|
-
"@teambit/builder": "0.0.
|
25
|
-
"@teambit/logger": "0.0.
|
20
|
+
"@teambit/cli": "0.0.389",
|
21
|
+
"@teambit/component": "0.0.560",
|
22
|
+
"@teambit/envs": "0.0.560",
|
23
|
+
"@teambit/workspace": "0.0.560",
|
24
|
+
"@teambit/builder": "0.0.560",
|
25
|
+
"@teambit/logger": "0.0.474"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
28
|
"@types/lodash": "4.14.165",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
"@types/node": "12.20.4"
|
35
35
|
},
|
36
36
|
"peerDependencies": {
|
37
|
-
"@teambit/legacy": "1.0.
|
37
|
+
"@teambit/legacy": "1.0.175",
|
38
38
|
"react-dom": "^16.8.0 || ^17.0.0",
|
39
39
|
"react": "^16.8.0 || ^17.0.0"
|
40
40
|
},
|
@@ -62,7 +62,7 @@
|
|
62
62
|
"react": "-"
|
63
63
|
},
|
64
64
|
"peerDependencies": {
|
65
|
-
"@teambit/legacy": "1.0.
|
65
|
+
"@teambit/legacy": "1.0.175",
|
66
66
|
"react-dom": "^16.8.0 || ^17.0.0",
|
67
67
|
"react": "^16.8.0 || ^17.0.0"
|
68
68
|
}
|
@@ -71,8 +71,17 @@
|
|
71
71
|
"files": [
|
72
72
|
"dist",
|
73
73
|
"!dist/tsconfig.tsbuildinfo",
|
74
|
-
"
|
75
|
-
"
|
74
|
+
"**/*.md",
|
75
|
+
"**/*.mdx",
|
76
|
+
"**/*.js",
|
77
|
+
"**/*.json",
|
78
|
+
"**/*.sass",
|
79
|
+
"**/*.scss",
|
80
|
+
"**/*.less",
|
81
|
+
"**/*.css",
|
82
|
+
"**/*.css",
|
83
|
+
"**/*.jpeg",
|
84
|
+
"**/*.gif"
|
76
85
|
],
|
77
86
|
"private": false,
|
78
87
|
"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
|
+
}
|