123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "$schema": "node_modules/nx/schemas/project-schema.json",
- "name": "DnDTools",
- "projectType": "application",
- "generators": {
- "@schematics/angular:component": {
- "style": "scss"
- }
- },
- "sourceRoot": "src",
- "prefix": "",
- "targets": {
- "build": {
- "executor": "@angular-devkit/build-angular:browser",
- "options": {
- "outputPath": "dist/dn-dtools",
- "index": "src/index.html",
- "main": "src/main.ts",
- "polyfills": ["zone.js"],
- "tsConfig": "tsconfig.app.json",
- "inlineStyleLanguage": "scss",
- "assets": ["src/favicon.ico", "src/assets"],
- "styles": ["src/styles.scss"],
- "scripts": []
- },
- "configurations": {
- "production": {
- "budgets": [
- {
- "type": "initial",
- "maximumWarning": "1mb",
- "maximumError": "2mb"
- },
- {
- "type": "anyComponentStyle",
- "maximumWarning": "4kb",
- "maximumError": "16kb"
- }
- ],
- "outputHashing": "all"
- },
- "development": {
- "buildOptimizer": false,
- "optimization": false,
- "vendorChunk": true,
- "extractLicenses": false,
- "sourceMap": true,
- "namedChunks": true
- }
- },
- "defaultConfiguration": "production",
- "outputs": ["{options.outputPath}"]
- },
- "serve": {
- "executor": "@angular-devkit/build-angular:dev-server",
- "configurations": {
- "production": {
- "browserTarget": "DnDTools:build:production"
- },
- "development": {
- "browserTarget": "DnDTools:build:development"
- }
- },
- "defaultConfiguration": "development"
- },
- "extract-i18n": {
- "executor": "@angular-devkit/build-angular:extract-i18n",
- "options": {
- "browserTarget": "DnDTools:build"
- }
- },
- "test": {
- "executor": "@angular-devkit/build-angular:karma",
- "options": {
- "polyfills": ["zone.js", "zone.js/testing"],
- "tsConfig": "tsconfig.spec.json",
- "inlineStyleLanguage": "scss",
- "assets": ["src/favicon.ico", "src/assets"],
- "styles": ["src/styles.scss"],
- "scripts": []
- }
- }
- }
- }
|