ObsiViewer/angular.json

78 lines
2.1 KiB
JSON

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "",
"projects": {
"app": {
"projectType": "application",
"root": "",
"sourceRoot": "./",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"outputPath": {
"base": "./dist",
"browser": "."
},
"browser": "index.tsx",
"tsConfig": "tsconfig.json",
"styles": [
"node_modules/angular-calendar/css/angular-calendar.css",
"src/styles/tokens.css",
"src/styles/components.css",
"src/styles.css"
]
},
"configurations": {
"production": {
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular/build:dev-server",
"options": {
"port": 3000,
"proxyConfig": "proxy.conf.json"
},
"configurations": {
"production": {
"buildTarget": "app:build:production"
},
"development": {
"buildTarget": "app:build:development"
}
},
"defaultConfiguration": "development"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.cjs",
"polyfills": [
"zone.js",
"zone.js/testing"
],
"include": [
"src/**/*.spec.ts"
],
"styles": [
"src/styles.css"
],
"scripts": [],
"assets": []
}
}
}
}
}
}