{ "name": "part-1-html-css", "$schema": "../node_modules/nx/schemas/project-schema.json", "projectType": "application", "sourceRoot": "part-1-html-css/src", "tags": [], "targets": { "build": { "executor": "@nx/webpack:webpack", "outputs": [ "{options.outputPath}" ], "defaultConfiguration": "production", "options": { "outputPath": "dist/part-1-html-css", "compiler": "swc", "main": "part-1-html-css/src/main.ts", "tsConfig": "part-1-html-css/tsconfig.app.json", "webpackConfig": "part-1-html-css/webpack.config.js", "assets": [ "part-1-html-css/src/assets" ], "index": "part-1-html-css/src/index.html", "baseHref": "/", "styles": [ "part-1-html-css/src/styles.scss" ], "scripts": [] }, "configurations": { "production": { "optimization": true, "outputHashing": "all", "sourceMap": false, "namedChunks": false, "extractLicenses": true, "vendorChunk": false, "fileReplacements": [ { "replace": "part-1-html-css/src/environments/environment.ts", "with": "part-1-html-css/src/environments/environment.prod.ts" } ] } } }, "serve": { "executor": "@nx/webpack:dev-server", "options": { "buildTarget": "part-1-html-css:build" }, "configurations": { "production": { "buildTarget": "part-1-html-css:build:production" } } }, "lint": { "executor": "@nx/linter:eslint", "outputs": [ "{options.outputFile}" ], "options": { "lintFilePatterns": [ "part-1-html-css/**/*.ts" ] } }, "test": { "executor": "@nx/jest:jest", "outputs": [ "{workspaceRoot}/coverage/{projectRoot}" ], "options": { "jestConfig": "part-1-html-css/jest.config.ts", "passWithNoTests": true }, "configurations": { "ci": { "ci": true, "codeCoverage": true } } } } }