Newer
Older
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"siibra-explorer": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "sass"
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/aot",
"index": "src/index.html",
"main": "src/main-aot.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "css",
"assets": [
"src/assets"
],
"styles": [
"src/theme.scss",
"src/overwrite.scss",
"src/extra_styles.css"
],
"scripts": [{
"input": "worker/worker.js",
"inject": false,
"bundleName": "worker"
},{
"input": "worker/worker-plotly.js",
"inject": false,
"bundleName": "worker-plotly"
},{
"input": "worker/worker-nifti.js",
"inject": false,
"bundleName": "worker-nifti"
},{
"input": "worker/worker-typedarray.js",
"inject": false,
"bundleName": "worker-typedarray"
},
{
"input": "third_party/catchSyntaxError.js",
"inject": false,
"bundleName": "catchSyntaxError"
},{
"input": "third_party/syntaxError.js",
"inject": false,
"bundleName": "syntaxError"
},
{
"input": "third_party/extra_js.js",
"inject": false,
"bundleName": "extra_js"
},
{
"input": "third_party/vanilla_nehuba.js",
"inject": false,
"bundleName": "vanilla_nehuba"
},{
"input": "export-nehuba/dist/min/main.bundle.js",
"inject": false,
"bundleName": "main.bundle"
},{
"input": "export-nehuba/dist/min/chunk_worker.bundle.js",
"inject": false,
"bundleName": "chunk_worker.bundle"
},{
"inject": false,
"input": "third_party/leap-0.6.4.js",
"bundleName": "leap-0.6.4"
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"buildOptimizer": true,
"optimization": {
"scripts": true,
"fonts": true,
"styles": {
"inlineCritical": false,
"minify": true
}
},
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": false,
"namedChunks": true
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "siibra-explorer:build:production"
},
"development": {
"browserTarget": "siibra-explorer:build:development"
}
},
"defaultConfiguration": "development",
"options": {
"port": 8080
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "siibra-explorer:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "spec/test.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "spec/karma.conf.js",
"inlineStyleLanguage": "css",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/theme.scss",
"src/extra_styles.css"
],
"scripts": []
}
}
}
}
},
"defaultProject": "siibra-explorer"
}