kn-cli 1.0.45 → 1.0.46

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -66,6 +66,9 @@ module.exports = {
66
66
  ```
67
67
 
68
68
  # 更新日志
69
+ * 1.0.46
70
+ 模板工程下增加jsconfig.json用于解决配置资源根目录别名后vscode无法快捷定位文件
71
+
69
72
  * 1.0.45
70
73
  后管模板创建不了的问题
71
74
 
@@ -0,0 +1,10 @@
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "emitDecoratorMetadata": true,
5
+ "experimentalDecorators": true,
6
+ "paths": {
7
+ "@/*": ["./public/src/*"]
8
+ }
9
+ },
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "emitDecoratorMetadata": true,
5
+ "experimentalDecorators": true,
6
+ "paths": {
7
+ "@/*": ["./public/src/*"]
8
+ }
9
+ },
10
+ }