@eggjs/tsconfig 1.1.0 → 1.2.0
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 +5 -9
- package/tsconfig.json +3 -2
- package/History.md +0 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/tsconfig",
|
|
3
3
|
"description": "Base tsconfig for egg ts project",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"egg",
|
|
7
7
|
"typescript",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"tsconfig.json"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"lint": "echo 'ignore'",
|
|
14
15
|
"test": "egg-bin test",
|
|
15
16
|
"ci": "egg-bin cov"
|
|
16
17
|
},
|
|
@@ -28,13 +29,8 @@
|
|
|
28
29
|
"node": ">=14.0.0"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
|
-
"coffee": "^5.
|
|
32
|
-
"egg-bin": "^5.1
|
|
33
|
-
"
|
|
34
|
-
"typescript": "^4.7.4"
|
|
35
|
-
},
|
|
36
|
-
"ci": {
|
|
37
|
-
"os": "linux",
|
|
38
|
-
"versions": "14, 16, 18"
|
|
32
|
+
"coffee": "^5.5.0",
|
|
33
|
+
"egg-bin": "^5.6.1",
|
|
34
|
+
"typescript": "^4.9.4"
|
|
39
35
|
}
|
|
40
36
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compileOnSave": true,
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"target": "
|
|
4
|
+
"target": "ES2020",
|
|
5
5
|
"module": "commonjs",
|
|
6
6
|
"strict": true,
|
|
7
7
|
// Warn on expressions and declarations with an implied 'any' type.
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"resolveJsonModule": true,
|
|
33
33
|
// Enables experimental support for ES7 decorators.
|
|
34
34
|
"experimentalDecorators": true,
|
|
35
|
-
"useUnknownInCatchVariables": true
|
|
35
|
+
"useUnknownInCatchVariables": true,
|
|
36
|
+
"incremental": true
|
|
36
37
|
}
|
|
37
38
|
}
|
package/History.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
1.1.0 / 2022-06-20
|
|
3
|
-
==================
|
|
4
|
-
|
|
5
|
-
**others**
|
|
6
|
-
* [[`9722eb2`](http://github.com/eggjs/tsconfig/commit/9722eb25e2f67fa1b87eff226507e241583c418d)] - 📦 NEW: Enable useUnknownInCatchVariables (#2) (fengmk2 <<fengmk2@gmail.com>>)
|
|
7
|
-
|
|
8
|
-
1.0.0 / 2020-07-30
|
|
9
|
-
==================
|
|
10
|
-
|
|
11
|
-
**others**
|
|
12
|
-
* [[`05c0e95`](http://github.com/eggjs/tsconfig/commit/05c0e954eea00398ed63d6449febbc86051c7fb5)] - first impl (#1) (killa <<killa123@126.com>>),fatal: No names found, cannot describe anything.
|
|
13
|
-
|