You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.7 KiB
103 lines
2.7 KiB
{ |
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
|
"version": 1, |
|
"newProjectRoot": "projects", |
|
"projects": { |
|
"spa-client": { |
|
"projectType": "application", |
|
"schematics": { |
|
"@schematics/angular:component": { |
|
"style": "scss" |
|
} |
|
}, |
|
"root": "", |
|
"sourceRoot": "src", |
|
"prefix": "app", |
|
"architect": { |
|
"build": { |
|
"builder": "@angular-devkit/build-angular:application", |
|
"options": { |
|
"outputPath": "dist/spa-client", |
|
"index": "src/index.html", |
|
"browser": "src/main.ts", |
|
"polyfills": [ |
|
"zone.js" |
|
], |
|
"tsConfig": "tsconfig.app.json", |
|
"inlineStyleLanguage": "scss", |
|
"assets": [ |
|
{ |
|
"glob": "**/*", |
|
"input": "public" |
|
} |
|
], |
|
"styles": [ |
|
"src/styles.scss" |
|
], |
|
"scripts": [] |
|
}, |
|
"configurations": { |
|
"production": { |
|
"budgets": [ |
|
{ |
|
"type": "initial", |
|
"maximumWarning": "500kB", |
|
"maximumError": "1MB" |
|
}, |
|
{ |
|
"type": "anyComponentStyle", |
|
"maximumWarning": "2kB", |
|
"maximumError": "4kB" |
|
} |
|
], |
|
"outputHashing": "all" |
|
}, |
|
"development": { |
|
"optimization": false, |
|
"extractLicenses": false, |
|
"sourceMap": true |
|
} |
|
}, |
|
"defaultConfiguration": "production" |
|
}, |
|
"serve": { |
|
"builder": "@angular-devkit/build-angular:dev-server", |
|
"configurations": { |
|
"production": { |
|
"buildTarget": "spa-client:build:production" |
|
}, |
|
"development": { |
|
"buildTarget": "spa-client:build:development", |
|
"host": "127.0.0.1" |
|
} |
|
}, |
|
"defaultConfiguration": "development" |
|
}, |
|
"extract-i18n": { |
|
"builder": "@angular-devkit/build-angular:extract-i18n" |
|
}, |
|
"test": { |
|
"builder": "@angular-devkit/build-angular:karma", |
|
"options": { |
|
"polyfills": [ |
|
"zone.js", |
|
"zone.js/testing" |
|
], |
|
"tsConfig": "tsconfig.spec.json", |
|
"inlineStyleLanguage": "scss", |
|
"assets": [ |
|
{ |
|
"glob": "**/*", |
|
"input": "public" |
|
} |
|
], |
|
"styles": [ |
|
"src/styles.scss" |
|
], |
|
"scripts": [] |
|
} |
|
} |
|
} |
|
} |
|
} |
|
}
|
|
|