-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
75 changed files
with
2,491 additions
and
2,788 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,5 @@ typings/ | |
!/dist/ | ||
.DS_Store | ||
/build/ | ||
/watch/ | ||
/dist/*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
{ | ||
// 使用 IntelliSense 了解相关属性。 | ||
// 悬停以查看现有属性的描述。 | ||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"configurations": [{ | ||
"name": "调试当前ts文件", | ||
"type": "node", | ||
"request": "launch", | ||
"name": "run test <selected file>", | ||
"program": "${file}" | ||
//NOTE: | ||
//npm install typescript --save-dev | ||
//npm install ts-node --save-dev | ||
//see help doc: https://segmentfault.com/a/1190000011935122 | ||
"program": "${workspaceRoot}/node_modules/ts-node/dist/bin.js", | ||
"args": [ | ||
"${relativeFile}" | ||
], | ||
"cwd": "${workspaceRoot}", | ||
"protocol": "inspector" | ||
}, | ||
{ | ||
"name": "调试当前js文件", | ||
"type": "node", | ||
"request": "launch", | ||
"name": "run test all", | ||
"program": "${workspaceFolder}/src/test/scripts/testAll.js" | ||
"program": "${file}" | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.