openvidu/openvidu-testapp/angular.json

107 lines
3.0 KiB
JSON
Raw Permalink Normal View History

2018-06-04 14:27:37 +02:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
2024-07-02 19:19:05 +02:00
"openvidu-testapp-livekit": {
"projectType": "application",
"schematics": {},
2018-06-04 14:27:37 +02:00
"root": "",
"sourceRoot": "src",
2024-07-02 19:19:05 +02:00
"prefix": "app",
2018-06-04 14:27:37 +02:00
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
2018-06-04 14:27:37 +02:00
"options": {
"customWebpackConfig": {
"path": "./custom-webpack.config.js",
"replaceDuplicatePlugins": true
2025-02-19 11:48:56 +01:00
},
"outputPath": "dist/openvidu-testapp-livekit",
2018-06-04 14:27:37 +02:00
"index": "src/index.html",
"main": "src/main.ts",
2024-07-02 19:19:05 +02:00
"polyfills": [
"zone.js",
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
2018-06-04 14:27:37 +02:00
"assets": [
2024-07-02 19:19:05 +02:00
"src/favicon.ico",
"src/assets"
2018-06-04 14:27:37 +02:00
],
"styles": [
"src/openvidu-theme.scss",
2024-07-02 19:19:05 +02:00
"src/styles.css"
2018-06-04 14:27:37 +02:00
],
"scripts": []
2018-06-04 14:27:37 +02:00
},
"configurations": {
"production": {
2024-07-02 19:19:05 +02:00
"budgets": [
2018-06-04 14:27:37 +02:00
{
2024-07-02 19:19:05 +02:00
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
2018-06-04 14:27:37 +02:00
}
2024-07-02 19:19:05 +02:00
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
2018-06-04 14:27:37 +02:00
}
2024-07-02 19:19:05 +02:00
},
"defaultConfiguration": "production"
2018-06-04 14:27:37 +02:00
},
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
2018-06-04 14:27:37 +02:00
"configurations": {
"production": {
2025-02-19 11:41:31 +01:00
"buildTarget": "openvidu-testapp-livekit:build:production"
2024-07-02 19:19:05 +02:00
},
"development": {
2025-02-19 11:41:31 +01:00
"buildTarget": "openvidu-testapp-livekit:build:development"
2018-06-04 14:27:37 +02:00
}
2024-07-02 19:19:05 +02:00
},
"defaultConfiguration": "development"
2018-06-04 14:27:37 +02:00
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2025-02-19 11:41:31 +01:00
"buildTarget": "openvidu-testapp-livekit:build"
2018-06-04 14:27:37 +02:00
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
2024-07-02 19:19:05 +02:00
"polyfills": [
"zone.js",
"zone.js/testing",
"src/polyfills.ts"
2018-06-04 14:27:37 +02:00
],
2024-07-02 19:19:05 +02:00
"tsConfig": "tsconfig.spec.json",
2018-06-04 14:27:37 +02:00
"assets": [
2024-07-02 19:19:05 +02:00
"src/favicon.ico",
"src/assets"
2018-06-04 14:27:37 +02:00
],
2024-07-02 19:19:05 +02:00
"styles": [
"src/openvidu-theme.scss",
"src/styles.css"
],
"scripts": []
2018-06-04 14:27:37 +02:00
}
}
}
}
},
"cli": {
"analytics": false
2018-06-04 14:27:37 +02:00
}
}