| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
- "version": 1,
- "cli": {
- "packageManager": "npm"
- },
- "newProjectRoot": "projects",
- "projects": {
- "Tik-tok": {
- "projectType": "application",
- "schematics": {},
- "root": "",
- "sourceRoot": "src",
- "prefix": "app",
- "architect": {
- "build": {
- "builder": "@angular/build:application",
- "options": {
- "browser": "src/main.ts",
- "tsConfig": "tsconfig.app.json",
- "assets": [
- {
- "glob": "**/*",
- "input": "public"
- },
- {
- "glob": "ffmpeg-core.*",
- "input": "node_modules/@ffmpeg/core/dist/esm",
- "output": "assets/ffmpeg"
- },
- {
- "glob": "*.js",
- "input": "node_modules/@ffmpeg/ffmpeg/dist/esm",
- "output": "assets/ffmpeg/worker"
- }
- ],
- "styles": [
- "src/styles.css"
- ]
- },
- "configurations": {
- "production": {
- "optimization": {
- "scripts": true,
- "styles": {
- "minify": true,
- "inlineCritical": true,
- "removeSpecialComments": true
- },
- "fonts": {
- "inline": false
- }
- },
- "budgets": [
- {
- "type": "initial",
- "maximumWarning": "1.5MB",
- "maximumError": "2MB"
- },
- {
- "type": "anyComponentStyle",
- "maximumWarning": "150kB",
- "maximumError": "200kB"
- }
- ],
- "outputHashing": "all",
- "fileReplacements": [
- {
- "replace": "src/environments/environment.ts",
- "with": "src/environments/environment.prod.ts"
- }
- ]
- },
- "development": {
- "optimization": false,
- "extractLicenses": false,
- "sourceMap": true
- }
- },
- "defaultConfiguration": "production"
- },
- "serve": {
- "builder": "@angular/build:dev-server",
- "configurations": {
- "production": {
- "buildTarget": "Tik-tok:build:production"
- },
- "development": {
- "buildTarget": "Tik-tok:build:development"
- }
- },
- "defaultConfiguration": "development"
- },
- "test": {
- "builder": "@angular/build:unit-test"
- }
- }
- }
- }
- }
|