mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
feat(doc): move reouter'input
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": ["../../.eslintrc.json"],
|
||||
"extends": ["../../../.eslintrc.json"],
|
||||
"ignorePatterns": ["!**/*"],
|
||||
"overrides": [
|
||||
{
|
||||
@@ -5,9 +5,9 @@
|
||||
### Run Application
|
||||
|
||||
```bash
|
||||
npx nx serve router-input
|
||||
npx nx serve angular-router-input
|
||||
```
|
||||
|
||||
### Documentation and Instruction
|
||||
|
||||
Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/angular/22-router-input/).
|
||||
Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/angular/22-angular-router-input/).
|
||||
@@ -1,25 +1,25 @@
|
||||
{
|
||||
"name": "router-input",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"name": "angular-router-input",
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"prefix": "app",
|
||||
"sourceRoot": "apps/router-input/src",
|
||||
"sourceRoot": "apps/angular/router-input/src",
|
||||
"tags": [],
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/router-input",
|
||||
"index": "apps/router-input/src/index.html",
|
||||
"main": "apps/router-input/src/main.ts",
|
||||
"outputPath": "dist/apps/angular/router-input",
|
||||
"index": "apps/angular/router-input/src/index.html",
|
||||
"main": "apps/angular/router-input/src/main.ts",
|
||||
"polyfills": ["zone.js"],
|
||||
"tsConfig": "apps/router-input/tsconfig.app.json",
|
||||
"tsConfig": "apps/angular/router-input/tsconfig.app.json",
|
||||
"assets": [
|
||||
"apps/router-input/src/favicon.ico",
|
||||
"apps/router-input/src/assets"
|
||||
"apps/angular/router-input/src/favicon.ico",
|
||||
"apps/angular/router-input/src/assets"
|
||||
],
|
||||
"styles": ["apps/router-input/src/styles.scss"],
|
||||
"styles": ["apps/angular/router-input/src/styles.scss"],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
@@ -53,10 +53,10 @@
|
||||
"executor": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"browserTarget": "router-input:build:production"
|
||||
"browserTarget": "angular-router-input:build:production"
|
||||
},
|
||||
"development": {
|
||||
"browserTarget": "router-input:build:development"
|
||||
"browserTarget": "angular-router-input:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
@@ -64,7 +64,7 @@
|
||||
"extract-i18n": {
|
||||
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"browserTarget": "router-input:build"
|
||||
"browserTarget": "angular-router-input:build"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
@@ -72,8 +72,8 @@
|
||||
"outputs": ["{options.outputFile}"],
|
||||
"options": {
|
||||
"lintFilePatterns": [
|
||||
"apps/router-input/**/*.ts",
|
||||
"apps/router-input/**/*.html"
|
||||
"apps/angular/router-input/**/*.ts",
|
||||
"apps/angular/router-input/**/*.html"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/out-tsc",
|
||||
"outDir": "../../../dist/out-tsc",
|
||||
"types": []
|
||||
},
|
||||
"files": ["src/main.ts"],
|
||||
@@ -19,7 +19,7 @@
|
||||
"path": "./tsconfig.editor.json"
|
||||
}
|
||||
],
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"angularCompilerOptions": {
|
||||
"enableI18nLegacyMessageIdFormat": false,
|
||||
"strictInjectionParameters": true,
|
||||
Reference in New Issue
Block a user