Skip to content

Commit 50f9047

Browse files
Se completaron los puntos solicitados
1 parent 555e806 commit 50f9047

151 files changed

Lines changed: 32208 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.browserslistrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.dev/reference/versions#browser-support
7+
8+
# You can see what browsers were selected by your queries by running:
9+
# npx browserslist
10+
11+
Chrome >=107
12+
Firefox >=106
13+
Edge >=107
14+
Safari >=16.1
15+
iOS >=16.1

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.eslintrc.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["projects/**/*"],
4+
"overrides": [
5+
{
6+
"files": ["*.ts"],
7+
"parserOptions": {
8+
"project": ["tsconfig.json"],
9+
"createDefaultProgram": true
10+
},
11+
"extends": [
12+
"plugin:@angular-eslint/recommended",
13+
"plugin:@angular-eslint/template/process-inline-templates"
14+
],
15+
"rules": {
16+
"@angular-eslint/prefer-standalone": "off",
17+
"@angular-eslint/component-class-suffix": [
18+
"error",
19+
{
20+
"suffixes": ["Page", "Component"]
21+
}
22+
],
23+
"@angular-eslint/component-selector": [
24+
"error",
25+
{
26+
"type": "element",
27+
"prefix": "app",
28+
"style": "kebab-case"
29+
}
30+
],
31+
"@angular-eslint/directive-selector": [
32+
"error",
33+
{
34+
"type": "attribute",
35+
"prefix": "app",
36+
"style": "camelCase"
37+
}
38+
]
39+
}
40+
},
41+
{
42+
"files": ["*.html"],
43+
"extends": ["plugin:@angular-eslint/template/recommended"],
44+
"rules": {}
45+
}
46+
]
47+
}

.gitignore

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
.tmp
7+
*.tmp
8+
*.tmp.*
9+
UserInterfaceState.xcuserstate
10+
$RECYCLE.BIN/
11+
12+
*.log
13+
log.txt
14+
15+
16+
/.sourcemaps
17+
/.versions
18+
/coverage
19+
20+
# Ionic
21+
/.ionic
22+
/www
23+
/platforms
24+
/plugins
25+
26+
# Compiled output
27+
/dist
28+
/tmp
29+
/out-tsc
30+
/bazel-out
31+
32+
# Node
33+
/node_modules
34+
npm-debug.log
35+
yarn-error.log
36+
37+
# IDEs and editors
38+
.idea/
39+
.project
40+
.classpath
41+
.c9/
42+
*.launch
43+
.settings/
44+
*.sublime-project
45+
*.sublime-workspace
46+
47+
# Visual Studio Code
48+
.vscode/*
49+
!.vscode/settings.json
50+
!.vscode/tasks.json
51+
!.vscode/launch.json
52+
!.vscode/extensions.json
53+
.history/*
54+
55+
56+
# Miscellaneous
57+
/.angular
58+
/.angular/cache
59+
.sass-cache/
60+
/.nx
61+
/.nx/cache
62+
/connect.lock
63+
/coverage
64+
/libpeerconnection.log
65+
testem.log
66+
/typings
67+
68+
# System files
69+
.DS_Store
70+
Thumbs.db

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"Webnative.webnative"
4+
]
5+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.preferences.autoImportFileExcludePatterns": ["@ionic/angular/common", "@ionic/angular/standalone"]
3+
}

angular.json

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"app": {
7+
"projectType": "application",
8+
"schematics": {},
9+
"root": "",
10+
"sourceRoot": "src",
11+
"prefix": "app",
12+
"architect": {
13+
"build": {
14+
"builder": "@angular-devkit/build-angular:browser",
15+
"options": {
16+
"outputPath": "www",
17+
"index": "src/index.html",
18+
"main": "src/main.ts",
19+
"polyfills": "src/polyfills.ts",
20+
"tsConfig": "tsconfig.app.json",
21+
"inlineStyleLanguage": "scss",
22+
"assets": [
23+
{
24+
"glob": "**/*",
25+
"input": "src/assets",
26+
"output": "assets"
27+
},
28+
{
29+
"glob": "**/*.db",
30+
"input": "src/assets",
31+
"output": "./"
32+
},
33+
{
34+
"glob": "**/*.svg",
35+
"input": "node_modules/ionicons/dist/ionicons/svg",
36+
"output": "./svg"
37+
}
38+
],
39+
"styles": [
40+
"src/global.scss",
41+
"src/theme/variables.scss"
42+
],
43+
"scripts": []
44+
},
45+
"configurations": {
46+
"production": {
47+
"budgets": [
48+
{
49+
"type": "initial",
50+
"maximumWarning": "2mb",
51+
"maximumError": "5mb"
52+
},
53+
{
54+
"type": "anyComponentStyle",
55+
"maximumWarning": "2kb",
56+
"maximumError": "4kb"
57+
}
58+
],
59+
"fileReplacements": [
60+
{
61+
"replace": "src/environments/environment.ts",
62+
"with": "src/environments/environment.prod.ts"
63+
}
64+
],
65+
"outputHashing": "none"
66+
},
67+
"development": {
68+
"buildOptimizer": false,
69+
"optimization": false,
70+
"vendorChunk": true,
71+
"extractLicenses": false,
72+
"sourceMap": true,
73+
"namedChunks": true
74+
},
75+
"ci": {
76+
"progress": false
77+
}
78+
},
79+
"defaultConfiguration": "production"
80+
},
81+
"serve": {
82+
"builder": "@angular-devkit/build-angular:dev-server",
83+
"configurations": {
84+
"production": {
85+
"buildTarget": "app:build:production"
86+
},
87+
"development": {
88+
"buildTarget": "app:build:development"
89+
},
90+
"ci": {
91+
"progress": false
92+
}
93+
},
94+
"defaultConfiguration": "development"
95+
},
96+
"extract-i18n": {
97+
"builder": "@angular-devkit/build-angular:extract-i18n",
98+
"options": {
99+
"buildTarget": "app:build"
100+
}
101+
},
102+
"test": {
103+
"builder": "@angular-devkit/build-angular:karma",
104+
"options": {
105+
"main": "src/test.ts",
106+
"polyfills": "src/polyfills.ts",
107+
"tsConfig": "tsconfig.spec.json",
108+
"karmaConfig": "karma.conf.js",
109+
"inlineStyleLanguage": "scss",
110+
"assets": [
111+
{
112+
"glob": "**/*",
113+
"input": "src/assets",
114+
"output": "assets"
115+
},
116+
{
117+
"glob": "**/*.svg",
118+
"input": "node_modules/ionicons/dist/ionicons/svg",
119+
"output": "./svg"
120+
}
121+
],
122+
"styles": [
123+
"src/global.scss",
124+
"src/theme/variables.scss"
125+
],
126+
"scripts": []
127+
},
128+
"configurations": {
129+
"ci": {
130+
"progress": false,
131+
"watch": false
132+
}
133+
}
134+
},
135+
"lint": {
136+
"builder": "@angular-eslint/builder:lint",
137+
"options": {
138+
"lintFilePatterns": [
139+
"src/**/*.ts",
140+
"src/**/*.html"
141+
]
142+
}
143+
},
144+
"ionic-cordova-serve": {
145+
"builder": "@ionic/cordova-builders:cordova-serve",
146+
"options": {
147+
"cordovaBuildTarget": "app:ionic-cordova-build",
148+
"devServerTarget": "app:serve"
149+
},
150+
"configurations": {
151+
"production": {
152+
"cordovaBuildTarget": "app:ionic-cordova-build:production",
153+
"devServerTarget": "app:serve:production"
154+
}
155+
}
156+
},
157+
"ionic-cordova-build": {
158+
"builder": "@ionic/cordova-builders:cordova-build",
159+
"options": {
160+
"browserTarget": "app:build"
161+
},
162+
"configurations": {
163+
"production": {
164+
"browserTarget": "app:build:production"
165+
}
166+
}
167+
}
168+
}
169+
}
170+
},
171+
"cli": {
172+
"schematicCollections": [
173+
"@ionic/angular-toolkit"
174+
]
175+
},
176+
"schematics": {
177+
"@ionic/angular-toolkit:component": {
178+
"styleext": "scss"
179+
},
180+
"@ionic/angular-toolkit:page": {
181+
"styleext": "scss"
182+
}
183+
}
184+
}

0 commit comments

Comments
 (0)