Initial commit

This commit is contained in:
gabriel
2025-07-19 22:26:14 -03:00
commit 438f4d9e59
25 changed files with 13988 additions and 0 deletions

40
angular.json Normal file
View File

@@ -0,0 +1,40 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"my-wallet-ds": {
"projectType": "library",
"root": "projects/my-wallet-ds",
"sourceRoot": "projects/my-wallet-ds/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/my-wallet-ds/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/my-wallet-ds/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/my-wallet-ds/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/my-wallet-ds/tsconfig.spec.json",
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
}
}
}