forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serve-test.json
103 lines (103 loc) · 3.04 KB
/
serve-test.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"headers": [
{
"source": "*",
"headers": [
{
"key": "Cache-Control",
"value": "no-cache no-store no-transform"
}
]
}
],
"rewrites": [
{
"source": "/assets/:filename",
"destination": "__tests__/html/assets/:filename"
},
{
"source": "/assets/transcripts/:filename",
"destination": "__tests__/html/assets/transcripts/:filename"
},
{
"source": "/__dist__/botframework-webchat-fluent-theme.development.js",
"destination": "packages/fluent-theme/dist/botframework-webchat-fluent-theme.development.js"
},
{
"source": "/__dist__/botframework-webchat-fluent-theme.development.js.map",
"destination": "packages/fluent-theme/dist/botframework-webchat-fluent-theme.development.js.map"
},
{
"source": "/__dist__/botframework-webchat-fluent-theme.production.min.js",
"destination": "packages/fluent-theme/dist/botframework-webchat-fluent-theme.production.min.js"
},
{
"source": "/__dist__/botframework-webchat-fluent-theme.production.min.js.map",
"destination": "packages/fluent-theme/dist/botframework-webchat-fluent-theme.production.min.js.map"
},
{
"source": "/__dist__/fluent-bundle.development.js",
"destination": "packages/test/fluent-bundle/dist/fluent-bundle.development.js"
},
{
"source": "/__dist__/fluent-bundle.development.js.map",
"destination": "packages/test/fluent-bundle/dist/fluent-bundle.development.js.map"
},
{
"source": "/__dist__/fluent-bundle.production.min.js",
"destination": "packages/test/fluent-bundle/dist/fluent-bundle.production.min.js"
},
{
"source": "/__dist__/fluent-bundle.production.min.js.map",
"destination": "packages/test/fluent-bundle/dist/fluent-bundle.production.min.js.map"
},
{
"source": "/__dist__/webchat.js",
"destination": "packages/bundle/dist/webchat.js"
},
{
"source": "/__dist__/webchat-es5.js",
"destination": "packages/bundle/dist/webchat-es5.js"
},
{
"source": "/__dist__/webchat-minimal.js",
"destination": "packages/bundle/dist/webchat-minimal.js"
},
{
"source": "/test-harness.js",
"destination": "packages/test/harness/dist/test-harness.js"
},
{
"source": "/test-harness.js.map",
"destination": "packages/test/harness/dist/test-harness.js.map"
},
{
"source": "/test-page-object.js",
"destination": "packages/test/page-object/dist/test-page-object.js"
},
{
"source": "/test-page-object.js.map",
"destination": "packages/test/page-object/dist/test-page-object.js.map"
},
{
"source": "/:page.css",
"destination": "__tests__/html/:page.css"
},
{
"source": "/:page",
"destination": "__tests__/html/:page.html"
},
{
"source": "/",
"destination": "__tests__/html"
}
],
"unlisted": [
"/__image_snapshots__",
"/**/.git*",
"/**/*.ico",
"/**/*.js",
"/**/*.json",
"/**/*.map"
]
}