-
Notifications
You must be signed in to change notification settings - Fork 771
/
gulp.config.js
44 lines (43 loc) · 1.24 KB
/
gulp.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const config = {
// This is the name of the packaged manifest file
manifestFileName: "microsoft-teams-app-sample.zip",
// Supported Schemas
SCHEMAS: [
{
version: "1.3",
schema:
"https://developer.microsoft.com/en-us/json-schemas/teams/v1.3/MicrosoftTeams.schema.json",
},
{
version: "1.4",
schema:
"https://developer.microsoft.com/en-us/json-schemas/teams/v1.4/MicrosoftTeams.schema.json",
},
{
version: "devPreview",
schema:
"https://raw.githubusercontent.com/OfficeDev/microsoft-teams-app-schema/preview/DevPreview/MicrosoftTeams.schema.json",
},
{
version: "1.5",
schema:
"https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json",
},
{
version: "1.6",
schema:
"https://developer.microsoft.com/en-us/json-schemas/teams/v1.6/MicrosoftTeams.schema.json",
},
{
version: "1.7",
schema:
"https://developer.microsoft.com/en-us/json-schemas/teams/v1.7/MicrosoftTeams.schema.json",
},
{
version: "1.8",
schema:
"https://developer.microsoft.com/en-us/json-schemas/teams/v1.8/MicrosoftTeams.schema.json",
},
],
};
module.exports = config;