-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.dev.js
executable file
·60 lines (55 loc) · 1.87 KB
/
webpack.dev.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const aliases = [
'three',
'aurelia-binding',
'aurelia-pal',
'@pnext/three-loader',
'canvg',
'geojson-area',
'object-resolve-path',
'three-obj-mtl-loader',
'three-orbitcontrols',
'three-text2d',
'tween.js',
'@types/geojson'
];
const resources = [
'./components/sidebar/sidebar-buttons.html',
'./components/sidebar/sidebar-content.html',
'./components/sidebar/sidebar-footer.html',
'./components/sidebar/sidebar-header.html',
'./components/sidebar/sidebar-section-header.html',
'./components/sidebar/sidebar-section.html',
'./components/three-admin.html',
'./components/three-cube-view.html',
'./components/three-object-list.html',
'./components/three-object-property-explorer.html',
'./components/three-object-property-list.html',
'./components/three-rule-editor.html',
'./components/three-style-editor.html',
'./components/three.html',
'./dialogs/checkers/checker-flow-dialog.html',
'./dialogs/checkers/checker-module-distance.html',
'./dialogs/checkers/checker-module-extract.html',
'./dialogs/checkers/checker-module-filter.html',
'./dialogs/checkers/checker-module-if.html',
'./dialogs/checkers/checker-module-math.html',
'./dialogs/checkers/checker-module-normal-distance.html',
'./dialogs/checkers/checker-module-output.html',
'./dialogs/checkers/checker-module-projection.html',
'./dialogs/checkers/checker-module-reducer.html',
'./dialogs/admin-dialog-manual-rotate.html',
'./dialogs/admin-export-settings-dialog.html',
'./dialogs/admin-import-settings-dialog.html',
'./dialogs/three-admin-dialog-load-data-api.html',
'./dialogs/three-admin-dialog-save-data-api.html',
'./dialogs/three-checker-config-dialog.html',
'./dialogs/three-checker-report-dialog.html',
];
const dev = {
aliases: aliases,
resources: resources
};
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = dev;