-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
angular.json
120 lines (120 loc) · 3.27 KB
/
angular.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"packageManager": "npm",
"analytics": false,
"schematicCollections": [
"@angular-eslint/schematics"
]
},
"newProjectRoot": "projects",
"projects": {
"oyasumivr": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"standalone": false
}
},
"root": "",
"sourceRoot": "src-ui",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"outputHashing": "media",
"outputPath": {
"base": "dist/oyasumivr",
"browser": ""
},
"index": "src-ui/index.html",
"polyfills": [
"src-ui/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src-ui/favicon.ico",
"src-ui/assets"
],
"styles": [
"src-ui/styles.scss",
"node_modules/uplot/dist/uPlot.min.css"
],
"scripts": [
"node_modules/marked/marked.min.js",
"node_modules/uplot/dist/uPlot.iife.min.js"
],
"stylePreprocessorOptions": {
"includePaths": [
"src-ui/styles",
"."
]
},
"allowedCommonJsDependencies": [
"lodash",
"moment",
"vrchat",
"cookie",
"set-cookie-parser",
"typescript-debounce-decorator"
],
"browser": "src-ui/main.ts"
},
"configurations": {
"production": {
"budgets": [],
"fileReplacements": [
{
"replace": "src-ui/environments/environment.ts",
"with": "src-ui/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "oyasumivr:build:production"
},
"development": {
"buildTarget": "oyasumivr:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular/build:extract-i18n",
"options": {
"buildTarget": "oyasumivr:build"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src-ui/**/*.ts",
"src-ui/**/*.js",
"src-ui/**/*.html",
"src-ui/**/*.json",
"scripts/*.js"
]
}
}
}
}
}
}