-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
39 lines (39 loc) · 827 Bytes
/
config.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
{
"src": "public",
"dist": "build",
"vendors": ["distribution"],
"lintedExtensions": [".js", ".ts", ".jsx", ".tsx"],
"compileExtensions": [".js", ".ts", ".scss"],
"exclude": "/(node_modules|bower_components)/",
"browserSync": {
"host": "localhost",
"proxy": "example.com",
"port": 4200,
"ui": { "port": 4201 },
"open": false,
"socket": {
"domain": "localhost:4200"
},
"injectChanges": true,
"watchEvents": ["change"],
"files": [
"build/**/*.js",
"build/**/*.css"
],
"ignore": [
"build/some-pattern"
],
"watchOptions": {
"usePolling": true
}
},
"sass": {
"loadPaths": ["distribution/sass", "node_modules"]
},
"esbuild": {
"target": "es6"
},
"copy": {
"ignore": [".ts",".js",".scss",".gitkeep"]
}
}