generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken links in README and add missing VScode launch/task test/bu…
…ild config Signed-off-by: Frank Hinek <[email protected]>
- Loading branch information
1 parent
55743fd
commit e614946
Showing
11 changed files
with
342 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "test:node", | ||
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha", | ||
"runtimeArgs": [ | ||
"${workspaceFolder:crypto}/__tests__/**/*.spec.js" | ||
], | ||
"console": "internalConsole", | ||
"preLaunchTask": "tsc: build - tsconfig.test.json", | ||
"outFiles": [ | ||
"${workspaceFolder:crypto}/__tests__/**/*.js" | ||
], | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "npm run build", | ||
"type": "npm", | ||
"script": "build", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.test.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.test.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "test:node", | ||
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha", | ||
"runtimeArgs": [ | ||
"${workspaceFolder:dids}/__tests__/**/*.spec.js" | ||
], | ||
"console": "internalConsole", | ||
"preLaunchTask": "tsc: build - tsconfig.test.json", | ||
"outFiles": [ | ||
"${workspaceFolder:dids}/__tests__/**/*.js" | ||
], | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "npm run build", | ||
"type": "npm", | ||
"script": "build", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.test.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.test.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "test:node", | ||
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha", | ||
"runtimeArgs": [ | ||
"${workspaceFolder:web5-agent}/__tests__/**/*.spec.js" | ||
], | ||
"console": "internalConsole", | ||
"preLaunchTask": "tsc: build - tsconfig.test.json", | ||
"outFiles": [ | ||
"${workspaceFolder:web5-agent}/__tests__/**/*.js" | ||
], | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "npm run build", | ||
"type": "npm", | ||
"script": "build", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.test.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.test.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "test:node", | ||
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha", | ||
"runtimeArgs": [ | ||
"${workspaceFolder:web5-proxy-agent}/__tests__/**/*.spec.js" | ||
], | ||
"console": "internalConsole", | ||
"preLaunchTask": "tsc: build - tsconfig.test.json", | ||
"outFiles": [ | ||
"${workspaceFolder:web5-proxy-agent}/__tests__/**/*.js" | ||
], | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "npm run build", | ||
"type": "npm", | ||
"script": "build", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.test.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.test.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "test:node", | ||
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha", | ||
"runtimeArgs": [ | ||
"${workspaceFolder:web5-user-agent}/__tests__/**/*.spec.js" | ||
], | ||
"console": "internalConsole", | ||
"preLaunchTask": "tsc: build - tsconfig.test.json", | ||
"outFiles": [ | ||
"${workspaceFolder:web5-user-agent}/__tests__/**/*.js" | ||
], | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "npm run build", | ||
"type": "npm", | ||
"script": "build", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
{ | ||
"label": "tsc: build - tsconfig.test.json", | ||
"type": "typescript", | ||
"tsconfig": "tsconfig.test.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder:root}" | ||
} | ||
}, | ||
] | ||
} |
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