Skip to content

Commit 9397a74

Browse files
Add files via upload
1 parent d611067 commit 9397a74

20 files changed

+13097
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# TemplateDrivenForm
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.7.
4+
5+
## Development server
6+
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
8+
9+
## Code scaffolding
10+
11+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
12+
13+
## Build
14+
15+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
16+
17+
## Running unit tests
18+
19+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
20+
21+
## Running end-to-end tests
22+
23+
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
24+
25+
## Further help
26+
27+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.

angular.json

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"template-driven-form": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"standalone": false
11+
},
12+
"@schematics/angular:directive": {
13+
"standalone": false
14+
},
15+
"@schematics/angular:pipe": {
16+
"standalone": false
17+
}
18+
},
19+
"root": "",
20+
"sourceRoot": "src",
21+
"prefix": "app",
22+
"architect": {
23+
"build": {
24+
"builder": "@angular-devkit/build-angular:application",
25+
"options": {
26+
"outputPath": "dist/template-driven-form",
27+
"index": "src/index.html",
28+
"browser": "src/main.ts",
29+
"polyfills": [
30+
"zone.js"
31+
],
32+
"tsConfig": "tsconfig.app.json",
33+
"assets": [
34+
"src/favicon.ico",
35+
"src/assets"
36+
],
37+
"styles": [
38+
"src/styles.css"
39+
],
40+
"scripts": [],
41+
"server": "src/main.server.ts",
42+
"prerender": true,
43+
"ssr": {
44+
"entry": "server.ts"
45+
}
46+
},
47+
"configurations": {
48+
"production": {
49+
"budgets": [
50+
{
51+
"type": "initial",
52+
"maximumWarning": "500kb",
53+
"maximumError": "1mb"
54+
},
55+
{
56+
"type": "anyComponentStyle",
57+
"maximumWarning": "2kb",
58+
"maximumError": "4kb"
59+
}
60+
],
61+
"outputHashing": "all"
62+
},
63+
"development": {
64+
"optimization": false,
65+
"extractLicenses": false,
66+
"sourceMap": true
67+
}
68+
},
69+
"defaultConfiguration": "production"
70+
},
71+
"serve": {
72+
"builder": "@angular-devkit/build-angular:dev-server",
73+
"configurations": {
74+
"production": {
75+
"buildTarget": "template-driven-form:build:production"
76+
},
77+
"development": {
78+
"buildTarget": "template-driven-form:build:development"
79+
}
80+
},
81+
"defaultConfiguration": "development"
82+
},
83+
"extract-i18n": {
84+
"builder": "@angular-devkit/build-angular:extract-i18n",
85+
"options": {
86+
"buildTarget": "template-driven-form:build"
87+
}
88+
},
89+
"test": {
90+
"builder": "@angular-devkit/build-angular:karma",
91+
"options": {
92+
"polyfills": [
93+
"zone.js",
94+
"zone.js/testing"
95+
],
96+
"tsConfig": "tsconfig.spec.json",
97+
"assets": [
98+
"src/favicon.ico",
99+
"src/assets"
100+
],
101+
"styles": [
102+
"src/styles.css"
103+
],
104+
"scripts": []
105+
}
106+
}
107+
}
108+
}
109+
},
110+
"cli": {
111+
"analytics": "4137e0aa-3a24-4ecc-9e01-227f56c9a3c4"
112+
}
113+
}

0 commit comments

Comments
 (0)