zenweb 3.15.2 → 3.15.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.15.3] - 2023-3-27
4
+ - 新增 tsconfig-app.json, tsconfig-module.json 文件
5
+
3
6
  ## [3.15.2] - 2023-3-27
4
7
  - 新增 tsconfig-base.json 文件
5
8
 
package/README.md CHANGED
@@ -33,7 +33,7 @@ create `tsconfig.json` file
33
33
 
34
34
  ```json
35
35
  {
36
- "extends": "zenweb/tsconfig-base",
36
+ "extends": "zenweb/tsconfig-app",
37
37
  "compilerOptions": {
38
38
  "outDir": "./app"
39
39
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zenweb",
3
- "version": "3.15.2",
3
+ "version": "3.15.3",
4
4
  "description": "Modular lightweight web framework based on Koa",
5
5
  "main": "dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -6,7 +6,6 @@
6
6
  "lib": [ "ES2019" ],
7
7
  "module": "commonjs",
8
8
  "strict": true,
9
- "declaration": true,
10
9
  "noUnusedLocals": true,
11
10
  "noUnusedParameters": true,
12
11
  "allowUnusedLabels": false,