-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1321 from OfficeDev/nintan/template
feat: add templates used for github copilot extension
- Loading branch information
Showing
469 changed files
with
21,998 additions
and
1 deletion.
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
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,28 @@ | ||
.appserviceIgnore | ||
.fx | ||
.deployment | ||
.localConfigs.testTool | ||
.localConfigs | ||
.notification.localstore.json | ||
.notification.testtoolstore.json | ||
.vscode | ||
*.js.map | ||
*.ts.map | ||
*.ts | ||
.git* | ||
.tsbuildinfo | ||
CHANGELOG.md | ||
readme.md | ||
local.settings.json | ||
test | ||
tsconfig.json | ||
.DS_Store | ||
teamsapp.yml | ||
teamsapp.*.yml | ||
/env/ | ||
/node_modules/.bin | ||
/node_modules/ts-node | ||
/node_modules/typescript | ||
/appPackage/ | ||
/infra/ | ||
/devTools/ |
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,26 @@ | ||
# TeamsFx files | ||
env/.env.*.user | ||
env/.env.local | ||
.DS_Store | ||
build | ||
appPackage/build | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# misc | ||
.env | ||
.deployment | ||
.DS_Store | ||
|
||
# build | ||
lib/ | ||
|
||
# Local data | ||
.localConfigs.testTool | ||
.localConfigs | ||
.notification.localstore.json | ||
.notification.testtoolstore.json | ||
|
||
# Dev tool directories | ||
/devTools/ |
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,5 @@ | ||
{ | ||
"recommendations": [ | ||
"TeamsDevApp.ms-teams-vscode-extension" | ||
] | ||
} |
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,132 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Remote (Edge)", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "https://teams.microsoft.com/l/app/${{TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}", | ||
"presentation": { | ||
"group": "3-remote", | ||
"order": 1 | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Launch Remote (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://teams.microsoft.com/l/app/${{TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}", | ||
"presentation": { | ||
"group": "3-remote", | ||
"order": 2 | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Launch App (Edge)", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "https://teams.microsoft.com/l/app/${{local:TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}", | ||
"cascadeTerminateToConfigurations": [ | ||
"Attach to Local Service" | ||
], | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen", | ||
"perScriptSourcemaps": "yes" | ||
}, | ||
{ | ||
"name": "Launch App (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://teams.microsoft.com/l/app/${{local:TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}", | ||
"cascadeTerminateToConfigurations": [ | ||
"Attach to Local Service" | ||
], | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen", | ||
"perScriptSourcemaps": "yes" | ||
}, | ||
{ | ||
"name": "Attach to Local Service", | ||
"type": "node", | ||
"request": "attach", | ||
"port": 9239, | ||
"restart": true, | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Launch Remote (Desktop)", | ||
"type": "node", | ||
"request": "launch", | ||
"preLaunchTask": "Start Teams App in Desktop Client (Remote)", | ||
"presentation": { | ||
"group": "3-remote", | ||
"order": 3 | ||
}, | ||
"internalConsoleOptions": "neverOpen", | ||
} | ||
], | ||
"compounds": [ | ||
{ | ||
"name": "Debug in Teams (Edge)", | ||
"configurations": [ | ||
"Launch App (Edge)", | ||
"Attach to Local Service" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "2-local", | ||
"order": 1 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "Debug in Teams (Chrome)", | ||
"configurations": [ | ||
"Launch App (Chrome)", | ||
"Attach to Local Service" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "2-local", | ||
"order": 2 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "Debug in Teams (Desktop)", | ||
"configurations": [ | ||
"Attach to Local Service" | ||
], | ||
"preLaunchTask": "Start Teams App in Desktop Client", | ||
"presentation": { | ||
"group": "2-local", | ||
"order": 3 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "Debug in Test Tool", | ||
"configurations": [ | ||
"Attach to Local Service" | ||
], | ||
"preLaunchTask": "Start Teams App (Test Tool)", | ||
"presentation": { | ||
"group": "1-local", | ||
"order": 1 | ||
}, | ||
"stopAll": true | ||
} | ||
] | ||
} |
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,11 @@ | ||
{ | ||
"debug.onTaskErrors": "abort", | ||
"json.schemas": [ | ||
{ | ||
"fileMatch": [ | ||
"/aad.*.json" | ||
], | ||
"schema": {} | ||
} | ||
] | ||
} |
Oops, something went wrong.